Launchpad automatic translations update.
[odoo/odoo.git] / addons / crm / crm_installer_view.xml
1 <openerp>
2   <data>
3     <record id="view_crm_installer" model="ir.ui.view">
4       <field name="name">crm.installer.view</field>
5       <field name="model">crm.installer</field>
6       <field name="type">form</field>
7       <field name="inherit_id" ref="base.res_config_installer"/>
8       <field name="arch" type="xml">
9         <data>
10           <form position="attributes">
11             <attribute name="string">CRM Application Configuration</attribute>
12           </form>
13
14           <separator string="title" position="attributes">
15             <attribute name="string">Configure Your CRM Application</attribute>
16           </separator>
17           <xpath expr="//label[@string='description']"
18                  position="attributes">
19             <attribute name="string">Enhance your core CRM Application with additional functionalities.</attribute>
20           </xpath>
21           <xpath expr='//separator[@string="vsep"]' position='attributes'>
22               <attribute name='rowspan'>13</attribute>
23               <attribute name='string'></attribute>
24           </xpath>
25           <xpath expr="//button[@string='Install Modules']" position="attributes">
26             <attribute name="string">Configure</attribute>
27           </xpath>
28             <group colspan="8">
29             <group colspan="4" col="4" groups="base.group_extended" name="other">
30                   <field name="crm_claim" />
31                   <field name="crm_helpdesk" />
32                   <field name="crm_fundraising" />
33                   <field name="wiki_sale_faq"/>
34                     <field name="sale_crm" invisible="1"/>
35             </group>
36             <group colspan="2" col="2">
37                 <separator string="Synchronization" colspan="4" />
38                 <field name="crm_caldav" />
39                 <field name="fetchmail" />
40             </group>
41             <group colspan="2" col="2">
42               <separator string="Plug-In" colspan="4" />
43                   <field name="thunderbird" />
44                   <field name="outlook" />
45               </group>
46           </group>
47         </data>
48       </field>
49     </record>
50
51     <record id="action_crm_installer" model="ir.actions.act_window">
52       <field name="name">CRM Application Configuration</field>
53       <field name="type">ir.actions.act_window</field>
54       <field name="res_model">crm.installer</field>
55       <field name="view_id" ref="view_crm_installer"/>
56       <field name="view_type">form</field>
57       <field name="view_mode">form</field>
58       <field name="target">new</field>
59     </record>
60
61     <record id="crm_installer_todo" model="ir.actions.todo">
62         <field name="action_id" ref="action_crm_installer"/>
63         <field name="sequence">3</field>
64         <field name="restart">always</field>
65         <field eval="[(6,0,[ref('base.group_extended')])]" name="groups_id"/>
66     </record>
67   </data>
68 </openerp>