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.

23 lines
922 B

  1. <?xml version="1.0" ?>
  2. <odoo>
  3. <record id="res_groups_view_form" model="ir.ui.view">
  4. <field name="name">res.groups.form - base_user_role</field>
  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="//sheet/group" position="before">
  9. <div name="button_box" class="oe_button_box">
  10. <button
  11. class="oe_stat_button"
  12. name="action_view_roles"
  13. type="object"
  14. icon="fa-gears"
  15. attrs="{'invisible': [ ('role_count', '=', 0)]}"
  16. >
  17. <field string="Roles" name="role_count" widget="statinfo" />
  18. </button>
  19. </div>
  20. </xpath>
  21. </field>
  22. </record>
  23. </odoo>