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.
14 lines
570 B
14 lines
570 B
<openerp>
|
|
<data>
|
|
<record model="ir.ui.view" id="developer_mode_active_form">
|
|
<field name="name">DeveloperMode</field>
|
|
<field name="model"></field>
|
|
<field name="inherit_id" ref="web.login"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//input[@name='redirect']" position='attributes'>
|
|
<attribute name="t-att-value">'%s%sdebug=1' % (redirect or '/web', redirect and '?' in redirect and '&' or '?')</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp>
|