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.

28 lines
1.1 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. model module for OpenERP
  4. Copyright (C) 2010 Sébastien BEAU <sebastien.beau@akretion.com>
  5. The licence is in the file __terp__.py
  6. -->
  7. <openerp>
  8. <data>
  9. <record id="ir_cron_error_mailer_view" model="ir.ui.view">
  10. <field name="name">ir.cron.error.mailer.form</field>
  11. <field name="model">ir.cron</field>
  12. <field name="inherit_id" ref="base.ir_cron_view"/>
  13. <field name="type">form</field>
  14. <field name="arch" type="xml">
  15. <field name="doall" position='after'>
  16. <group col="6" colspan="4">
  17. <separator string="Error Mailer" colspan="6"/>
  18. <field name="send_email?" colspan="1"/>
  19. <field name="email_account" colspan="1"/>
  20. <field name="email_TO" colspan="1"/>
  21. <field name="message" nolabel='1' colspan="6"/>
  22. </group>
  23. </field>
  24. </field>
  25. </record>
  26. </data>
  27. </openerp>