Skip to content
Snippets Groups Projects
Commit 5fe51e56 authored by wan's avatar wan
Browse files

[FIX] l10n*: replace t-raw by t-out

parent dee25dcc
Branches
Tags
No related merge requests found
......@@ -61,11 +61,11 @@
<hr class="company_invoice_line" />
</div>
<div name="invoice_address" class="invoice_address">
<t t-raw="address"/>
<t t-out="address"/>
</div>
</t>
<t t-else="fallback_address">
<div name="invoice_address" class="invoice_address" t-raw="fallback_address" t-options='{"widget": "contact", "fields": ["address", "name", "phone"], "no_marker": True}' />
<div name="invoice_address" class="invoice_address" t-out="fallback_address" t-options='{"widget": "contact", "fields": ["address", "name", "phone"], "no_marker": True}' />
</t>
<div class="company_address">
<div>
......@@ -76,7 +76,7 @@
t-options='{"widget": "contact", "fields": ["address"], "no_marker": true}'/>
<t t-if="information_block">
<div class="address">
<t t-raw="information_block"/>
<t t-out="information_block"/>
</div>
</t>
</div>
......
......@@ -19,7 +19,7 @@
<div t-attf-class="footer o_standard_footer o_company_#{company.id}_layout" position="after">
<div t-attf-class="footer o_standard_footer o_company_#{company.id}_layout">
<t t-if="custom_footer" t-raw="custom_footer"/>
<t t-if="custom_footer" t-out="custom_footer"/>
</div>
</div>
</template>
......@@ -43,7 +43,7 @@
</div>
<div t-attf-class="footer o_clean_footer o_company_#{company.id}_layout" position="after">
<div t-attf-class="footer o_clean_footer o_company_#{company.id}_layout">
<t t-if="custom_footer" t-raw="custom_footer"/>
<t t-if="custom_footer" t-out="custom_footer"/>
</div>
</div>
</template>
......@@ -67,7 +67,7 @@
</div>
<div t-attf-class="footer o_boxed_footer o_company_#{company.id}_layout" position="after">
<div t-attf-class="footer o_boxed_footer o_company_#{company.id}_layout">
<t t-if="custom_footer" t-raw="custom_footer"/>
<t t-if="custom_footer" t-out="custom_footer"/>
</div>
</div>
</template>
......@@ -91,7 +91,7 @@
</div>
<div t-attf-class="o_company_#{company.id}_layout footer o_background_footer" position="after">
<div t-attf-class="o_company_#{company.id}_layout footer o_background_footer">
<t t-if="custom_footer" t-raw="custom_footer"/>
<t t-if="custom_footer" t-out="custom_footer"/>
</div>
</div>
</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment