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.

31 lines
1.4 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <!-- Form view -->
  4. <record id="view_email_template_sendgrid_form" model="ir.ui.view">
  5. <field name="name">sendgrid.sendgrid.form</field>
  6. <field name="model">mail.template</field>
  7. <field name="inherit_id" ref="mail.email_template_form"/>
  8. <field name="arch" type="xml">
  9. <xpath expr="//field[@name='email_from']/ancestor::page" position="after">
  10. <page string="SendGrid">
  11. <group>
  12. <field name="sendgrid_template_ids">
  13. <tree editable="top">
  14. <field name="lang"/>
  15. <field name="sendgrid_template_id"/>
  16. </tree>
  17. </field>
  18. <button name="update_substitutions" string="Get substitutions from templates" type="object" colspan="2"/>
  19. <field name="substitution_ids">
  20. <tree editable="top">
  21. <field name="key"/>
  22. <field name="lang"/>
  23. <field name="value"/>
  24. </tree>
  25. </field>
  26. </group>
  27. </page>
  28. </xpath>
  29. </field>
  30. </record>
  31. </odoo>