Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[REF] grap_change_views_project: Do not hide activity_ids, as we will use it ! #391

Open
wants to merge 2 commits into
base: 12.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions grap_change_views_project/views/view_project_task.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,9 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
<field name="sql_request"/>
<field name="requesting_company_ids"/>
</field>
<xpath expr="//div[hasclass('oe_kanban_bottom_left')]//field[@name='activity_ids']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
<xpath expr="//div[hasclass('oe_kanban_bottom_left')]//field[@name='activity_ids']" position="after">
<div t-if="record.planned_hours.raw_value" class="text-muted o_kanban_record_subtitle">

(<field name="planned_hours" widget="float_time"/>)
<field name="planned_hours" widget="float_time"/>
</div>
<span t-if="record.github_link_1.raw_value"><a t-att-href="record.github_link_1.value" target="_blank"><i class="fa fa-github" role="img" aria-label="Pull request" title="Pull request" style="font-size:18px;color:#505050;margin-left:7px"/></a></span>
<span t-if="record.github_link_2.raw_value"><a t-att-href="record.github_link_2.value" target="_blank"><i class="fa fa-github" role="img" aria-label="Pull request" title="Pull request" style="font-size:18px;color:#505050"/></a></span>
Expand Down
Loading