odoo/addons/auth_oauth/res_config_view.xml

31 lines
1.5 KiB
XML

<?xml version="1.0"?>
<openerp>
<data>
<record id="view_general_configuration_auth_oauth" model="ir.ui.view">
<field name="name">base.config.auth.oauth</field>
<field name="model">base.config.settings</field>
<field name="inherit_id" ref="base_setup.view_general_configuration"/>
<field name="arch" type="xml">
<xpath expr="//label[@for='module_auth_oauth']" position="after">
<div>
<field name="auth_oauth_google_active" class="oe_inline"/>
<label for="auth_oauth_google_active"/>
</div>
<div>
<p attrs="{'invisible': [('auth_oauth_google_active','=',False)]}">
Explanation goes here OpenERP allows to
automatically create leads (or others documents)
from incoming emails. You can automatically
synchronize emails with OpenERP using regular
POP/IMAP accounts, using a direct email integration
script for your email server, or by manually
pushing emails to OpenERP using specific
plugins for your preferred email application.
</p>
</div>
</xpath>
</field>
</record>
</data>
</openerp>