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.
17 lines
645 B
17 lines
645 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Upload file wizard view -->
|
|
<record id="mail_attachment_view_form" model="ir.ui.view">
|
|
<field name="name">mail.attachment.view.form</field>
|
|
<field name="model">mail.attachment</field>
|
|
<field name="arch" type="xml">
|
|
<form string="upload file wizard">
|
|
<group class="oe_title">
|
|
<field name="mail_attachment" string=""
|
|
filename="file_name"/>
|
|
<field name="file_name" invisible="1"/>
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|