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.
|
|
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record model="ir.ui.view" id="view_attach_mail_manually"> <field name="name">fetchmail.attach.mail.manually</field> <field name="model">fetchmail.attach.mail.manually</field> <field name="type">form</field> <field name="arch" type="xml"> <form col="4"> <field name="folder_id" colspan="4" /> <field name="mail_ids" nolabel="1" colspan="4"> <tree editable="top"> <field name="subject" /> <field name="date" /> <field name="object_id" /> </tree> </field> <label string="" /> <label string="" /> <button special="cancel" string="Cancel" icon="gtk-cancel" /> <button string="Save" type="object" name="attach_mails" icon="gtk-ok" /> </form> </field> </record> </data> </openerp>
|