~camptocamp/server-env-tools/pending-merge-7.0

« back to all changes in this revision

Viewing changes to users_ldap_populate/view/users_ldap.xml

  • Committer: Stefan Rijnhart
  • Author(s): dgreis at sapo
  • Date: 2013-08-04 18:18:54 UTC
  • mfrom: (39.1.2 server-env-tools)
  • Revision ID: stefan@therp.nl-20130804181854-etly1posqhp6pezb
[MIG] Port of LDAP populate and group sync modules to 7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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>
 
20