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

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -