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.2 KiB

  1. <?xml version="1.0"?>
  2. <openerp>
  3. <data>
  4. <record model="ir.ui.view" id="company_form_view">
  5. <field name="name">res.company.form.inherit.users_ldap_groups</field>
  6. <field name="model">res.company</field>
  7. <field name="type">form</field>
  8. <field name="inherit_id" ref="auth_ldap.company_form_view"/>
  9. <field name="arch" type="xml">
  10. <xpath expr="//form[@string='LDAP Configuration']" position="inside">
  11. <group string="Map User Groups" >
  12. <field name="only_ldap_groups" />
  13. <field name="group_mappings" colspan="4" nolabel="1">
  14. <tree editable="top">
  15. <field name="ldap_attribute" attrs="{'required': [('operator','not in',['query'])], 'readonly': [('operator','in',['query'])]}" />
  16. <field name="operator" />
  17. <field name="value" />
  18. <field name="group" />
  19. </tree>
  20. </field>
  21. </group>
  22. </xpath>
  23. </field>
  24. </record>
  25. </data>
  26. </openerp>