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

@ -4,8 +4,9 @@
<record id="mail_template_demo_crm_lead" model="mail.template">
<field name="name">Welcome Demo</field>
<field name="model_id" ref="crm.model_crm_lead"/>
<field name="partner_to">{{ object.partner_id != False and object.partner_id.id }}</field>
<field name="email_to">{{ (not object.partner_id and object.email_from) }}</field>
<field name="partner_to" eval="False"/>
<field name="email_to" eval="False"/>
<field name="use_default_to" eval="True"/>
<field name="body_html" type="html">
<table border="0" cellpadding="0" cellspacing="0" style="padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;"><tr><td align="center">
<table border="0" cellpadding="0" cellspacing="0" width="590" style="padding: 24px; background-color: white; color: #454748; border-collapse:separate;">
@ -33,7 +34,7 @@
<tr>
<td valign="top" style="font-size: 13px;">
<div>
Hi <t t-out="object.partner_id and object.partner_id.name or ''">Deco Addict</t>,<br/><br/>
Hi <t t-out="object.partner_id and object.partner_id.name or ''">Acme Corporation</t>,<br/><br/>
Welcome to <t t-out="object.company_id.name or ''">My Company (San Francisco)</t>.
It's great to meet you! Now that you're on board, you'll discover what <t t-out="object.company_id.name or ''">My Company (San Francisco)</t> has to offer. My name is <t t-out="object.user_id.name or ''">Marc Demo</t> and I'll help you get the most out of Odoo. Could we plan a quick demo soon?<br/>
Feel free to reach out at any time!<br/><br/>
@ -73,11 +74,10 @@
</td></tr>
<!-- POWERED BY -->
<tr><td align="center" style="min-width: 590px;">
Powered by <a target="_blank" href="https://www.odoo.com?utm_source=db&amp;utm_medium=email" style="color: #875A7B;">Odoo</a>
Powered by <a target="_blank" href="https://www.odoo.com?utm_source=db&amp;utm_medium=email" t-attf-style="color: {{object.company_id.email_secondary_color or '#875A7B'}};;">Odoo</a>
</td></tr>
</table>
</field>
<field name="lang">{{ object.partner_id.lang }}</field>
<field name="auto_delete" eval="True"/>
</record>