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
1021 B

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Form view for project.sub.task -->
<record id="project_task_custom_view_form" model="ir.ui.view">
<field name="name">project.sub.task.view.form</field>
<field name="model">project.sub.task</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" invisible="show_tasks_page == False">
<tree editable="bottom" >
<field name="child_ids"/>
</tree>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
</odoo>