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.
 
 
 
 
 

35 lines
1.4 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!--Tree view of the model sendgrid email template-->
<record id="sendgrid_email_template_view_tree" model="ir.ui.view">
<field name="name">sendgrid.email.template.view.tree</field>
<field name="model">sendgrid.email.template</field>
<field name="arch" type="xml">
<tree string="Email Template Details">
<field name="temp_name"/>
<field name="ver_subject"/>
</tree>
</field>
</record>
<!--Form view of the model sendgrid email template-->
<record id="sendgrid_email_template_view_form" model="ir.ui.view">
<field name="name">sendgrid.email.template.view.form</field>
<field name="model">sendgrid.email.template</field>
<field name="arch" type="xml">
<form string="Email Template Details">
<sheet>
<group>
<field name="temp_name"/>
<field name="ver_subject"/>
</group>
<notebook>
<page string="Email Content">
<field name="temp_cont" widget="html"
options="{'style-inline': true}"/>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
</odoo>