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.
 
 
 
 
 

26 lines
1.0 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Form view for project.task.custom -->
<record id="project_task_custom_view_form" model="ir.ui.view">
<field name="name">project.task.custom.view.form</field>
<field name="model">project.task.custom</field>
<field name="arch" type="xml">
<form>
<sheet>
<group>
<field name="name"/>
<field name="description" widget="html"/>
<field name ="show_tasks_page" invisible="1"/>
</group>
<notebook>
<page name="tasks_page" string="Tasks" attrs="{'invisible': [('show_tasks_page', '=', False)]}">
<tree editable="bottom">
<field name="child_ids"/>
</tree>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
</odoo>