23 lines
1020 B
XML
23 lines
1020 B
XML
|
<?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>
|