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.

19 lines
861 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <record id="view_res_groups_form" model="ir.ui.view">
  5. <field name="model">res.groups</field>
  6. <field name="inherit_id" ref="base.view_groups_form" />
  7. <field name="arch" type="xml">
  8. <xpath expr="//field[@name='model_access']/tree" position="attributes">
  9. <attribute name="create">name == 'Access Rights'</attribute>
  10. <attribute name="delete">name != 'Access Rights'</attribute>
  11. </xpath>
  12. <xpath expr="." position="attributes">
  13. <attribute name="edit">name == 'Access Rights'</attribute>
  14. <attribute name="delete">name != 'Access Rights'</attribute>
  15. </xpath>
  16. </field>
  17. </record>
  18. </data>
  19. </openerp>