19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:30:53 +01:00
parent dc68f80d3f
commit 7221b9ac46
610 changed files with 135477 additions and 161677 deletions

View file

@ -49,8 +49,8 @@
<div>
Created on: <span t-field="lead.create_date"/>
</div>
<div t-if="lead.date_action_last">
Last Action: <span t-field="lead.date_action_last"/>
<div t-if="lead.date_automation_last">
Last Automation: <span t-field="lead.date_automation_last"/>
</div>
<div t-if="lead.date_deadline">
Expected Closing: <span t-field="lead.date_deadline"/>
@ -68,7 +68,7 @@
Tags:
<div class="ms-2 d-flex flex-row">
<div t-foreach="lead.tag_ids" t-as="tag" t-esc="tag.name"
t-attf-class="badge rounded-pill o_tag_color_#{tag.color} d-inline-block"/>
t-attf-class="badge rounded-pill o_tag o_tag_color_#{tag.color} d-inline-block"/>
</div>
</div>
<div t-if="lead.user_id" class="mt-3">
@ -82,7 +82,7 @@
</div>
<div>
<div class="mt-3"
t-if="lead.contact_name or lead.partner_name or lead.phone or lead.mobile or lead.email_from or lead.website">
t-if="lead.contact_name or lead.partner_name or lead.phone or lead.email_from or lead.website">
<div class="fw-bold">
Contact Details:
</div>
@ -95,9 +95,6 @@
<div t-if="lead.phone">
Phone: <span t-field="lead.phone"/>
</div>
<div t-if="lead.mobile">
Mobile: <span t-field="lead.mobile"/>
</div>
<div t-if="lead.email_from">
Email: <span t-field="lead.email_from"/>
</div>
@ -168,7 +165,7 @@
<div t-if="'values' in property"
class="ms-2 d-flex flex-row"> <!-- Tags -->
<div t-foreach="property['values']" t-as="tag" t-esc="tag['name']"
t-attf-class="badge rounded-pill o_tag_color_#{tag.get('color', 0)} d-inline-block me-2"/>
t-attf-class="badge rounded-pill o_tag o_tag_color_#{tag.get('color', 0)} d-inline-block me-2"/>
</div>
<div t-else="" class="ms-2" t-esc="property['value']"/>
</li>