odoo/addons/product_email_template/views/email_template_view.xml

24 lines
1004 B
XML

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record model="ir.ui.view" id="email_template_form_simplified">
<field name="name">email.template.form.simplified</field>
<field name="model">email.template</field>
<field name="priority">100</field>
<field name="arch" type="xml">
<form string="Email Template" version="7.0">
<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='text' />
<field name="attachment_ids" nolabel="1" colspan="2"
widget="many2many_binary"/>
</group>
</form>
</field>
</record>
</data>
</openerp>