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.

35 lines
1.2 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record model="ir.ui.view" id="view_attach_mail_manually">
  4. <field name="name">fetchmail.attach.mail.manually</field>
  5. <field name="model">fetchmail.attach.mail.manually</field>
  6. <field name="arch" type="xml">
  7. <form col="4" string="Attach mail manually">
  8. <group>
  9. <field name="folder_id" />
  10. <field name="mail_ids" nolabel="1" colspan="4">
  11. <tree editable="top" create="0">
  12. <field name="subject" />
  13. <field name="date" />
  14. <field name="object_id" />
  15. </tree>
  16. </field>
  17. </group>
  18. <footer>
  19. <button
  20. string="Save"
  21. type="object"
  22. name="attach_mails"
  23. class="oe_highlight" />
  24. or
  25. <button
  26. special="cancel"
  27. string="Cancel"
  28. class="oe_link" />
  29. </footer>
  30. </form>
  31. </field>
  32. </record>
  33. </odoo>