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
941 B

  1. <?xml version="1.0"?>
  2. <odoo>
  3. <record model="ir.ui.view" id="notification_form">
  4. <field name="name">user.notification.conf form</field>
  5. <field name="model">user.notification.conf</field>
  6. <field name="arch" type="xml">
  7. <form string="Notification">
  8. <group name="main">
  9. <field name="enabled" />
  10. <field name="subtype_id" options="{'no_create': True}" />
  11. </group>
  12. </form>
  13. </field>
  14. </record>
  15. <record model="ir.ui.view" id="notification_tree">
  16. <field name="name">user.notification.conf tree</field>
  17. <field name="model">user.notification.conf</field>
  18. <field name="arch" type="xml">
  19. <tree string="Notifications" editable="top">
  20. <field name="enabled" />
  21. <field name="subtype_id" />
  22. </tree>
  23. </field>
  24. </record>
  25. </odoo>