openerp - Odoo. Creating empty view -
what's easiest way create empty view in odoo, renders custom html?
there no such type of views in advanced views
to specifications, add html code in sheet tag:
<record model="ir.ui.view" id="session_form_view"> <field name="name">session.form</field> <field name="model">openacademy.session</field> <field name="arch" type="xml"> <form string="session form"> <sheet> html code here </sheet> </form> </field> </record>
Comments
Post a Comment