summaryrefslogtreecommitdiff
path: root/addons/product_email_template/views/mail_template_views.xml
blob: 96f6d66eec0c444cf32720a9cd9a4710d44059a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<odoo>
        <record id="email_template_form_simplified" model="ir.ui.view">
            <field name="name">mail.template.form.simplified</field>
            <field name="model">mail.template</field>
            <field name="priority">100</field>
            <field name="arch" type="xml">
                <form string="Email Template">
                    <group>
                        <field name="subject" invisible="1"/>
                        <field name="name" invisible="1"/>
                        <field name="model" invisible="1"/>
                        <h3 colspan="2">Body</h3>
                        <field name="body_html" nolabel="1" colspan="2" widget="html"
                            options="{'style-inline': true}" />
                        <field name="attachment_ids" nolabel="1" colspan="2"
                            widget="many2many_binary"/>
                    </group>
                </form>
            </field>
        </record>
</odoo>