Launchpad automatic translations update.
[odoo/odoo.git] / addons / marketing / marketing_view.xml
1 <?xml version="1.0"?>
2 <openerp>
3     <data>
4
5         <menuitem
6             name="Marketing"
7             icon="terp-crm"
8             id="base.marketing_menu"
9             sequence="17"
10             groups="marketing.group_marketing_user,marketing.group_marketing_manager"
11             web_icon="images/marketing.png"
12             web_icon_hover="images/marketing-hover.png"/>
13
14
15         <record id="view_marketing_installer" model="ir.ui.view">
16             <field name="name">marketing.installer.view</field>
17             <field name="model">marketing.installer</field>
18             <field name="type">form</field>
19             <field name="inherit_id" ref="base.res_config_installer"/>
20             <field name="arch" type="xml">
21                 <data>
22                   <form position="attributes">
23                     <attribute name="string">Marketing Application Configuration</attribute>
24                   </form>
25                   <separator string="title" position="attributes">
26                     <attribute name="string">Configure Your Marketing Application</attribute>
27                   </separator>
28                   <xpath expr="//label[@string='description']"
29                          position="attributes">
30                     <attribute name="string">OpenERP provides Addons to better manage your sales and marketing processes. Select the ones you would be interested in.</attribute>
31                   </xpath>
32                  <xpath expr='//separator[@string="vsep"]' position='attributes'>
33                        <attribute name='rowspan'>13</attribute>
34                        <attribute name='string'></attribute>
35                  </xpath>
36                   <xpath expr="//button[@string='Install Modules']" position="attributes">
37                             <attribute name="string">Configure</attribute>
38                   </xpath>
39                   <group colspan="8">
40                         <field name="marketing_campaign" />
41                         <field name="email_template" />
42                         <field name="crm_profiling" />
43                   </group>
44                 </data>
45             </field>
46         </record>
47
48         <record id="action_marketing_installer" model="ir.actions.act_window">
49             <field name="name">Marketing Applications Configuration</field>
50             <field name="type">ir.actions.act_window</field>
51             <field name="res_model">marketing.installer</field>
52             <field name="view_id" ref="view_marketing_installer"/>
53             <field name="view_type">form</field>
54             <field name="view_mode">form</field>
55             <field name="target">new</field>
56         </record>
57
58         <record id="marketing_installer_todo" model="ir.actions.todo">
59             <field name="action_id" ref="action_marketing_installer"/>
60             <field name="sequence">3</field>
61             <field name="restart">always</field>
62         </record>
63
64     </data>
65 </openerp>