You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
911 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright 2018 Onestein
  3. License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
  4. <odoo>
  5. <record id="mail_template_form" model="ir.ui.view">
  6. <field name="name">mail.template.form</field>
  7. <field name="model">mail.template</field>
  8. <field name="inherit_id" ref="mail.email_template_form"/>
  9. <field name="arch" type="xml">
  10. <xpath expr="//field[@name='attachment_ids']" position="after">
  11. <group>
  12. <field name="ir_attachment_language_ids">
  13. <tree editable="top">
  14. <field name="lang" />
  15. <field name="attachment_id" domain="[('type', '=', 'binary')]" />
  16. </tree>
  17. </field>
  18. </group>
  19. </xpath>
  20. </field>
  21. </record>
  22. </odoo>