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

  1. <?xml version="1.0"?>
  2. <openerp>
  3. <data>
  4. <record model="ir.ui.view" id="company_form_view">
  5. <field name="name">Add populate button to ldap view</field>
  6. <field name="model">res.company</field>
  7. <field name="inherit_id" ref="auth_ldap.company_form_view"/>
  8. <field name="arch" type="xml">
  9. <xpath expr="//form[@string='LDAP Configuration']" position="inside">
  10. <separator string="Populate user database" colspan="4"/>
  11. <button name="populate_wizard"
  12. string="Populate"
  13. type="object"
  14. colspan="2"/>
  15. </xpath>
  16. </field>
  17. </record>
  18. </data>
  19. </openerp>