web_view.xml 570 B

1234567891011121314
  1. <openerp>
  2. <data>
  3. <record model="ir.ui.view" id="developer_mode_active_form">
  4. <field name="name">DeveloperMode</field>
  5. <field name="model"></field>
  6. <field name="inherit_id" ref="web.login"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//input[@name='redirect']" position='attributes'>
  9. <attribute name="t-att-value">'%s%sdebug=1' % (redirect or '/web', redirect and '?' in redirect and '&amp;' or '?')</attribute>
  10. </xpath>
  11. </field>
  12. </record>
  13. </data>
  14. </openerp>