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.
 
 
 
 
 

39 lines
1.6 KiB

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<!--Checklist template Form view-->
<record id="checklist_template_view_form" model="ir.ui.view">
<field name="name">checklist.template.view.form</field>
<field name="model">checklist.template</field>
<field name="arch" type="xml">
<form>
<sheet>
<group>
<field name="name"/>
<field name="checklist_ids" widget="many2many_tags"/>
</group>
</sheet>
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="message_ids" widget="mail_thread"/>
</div>
</form>
</field>
</record>
<!-- Action for checklist template menu -->
<record id="action_calendar_checklist_template"
model="ir.actions.act_window">
<field name="name">Checklist Template</field>
<field name="res_model">checklist.template</field>
<field name="view_mode">tree,form</field>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Create a new Template for checklist !
</p>
</field>
</record>
<!-- Menu item for meeting checklist template-->
<menuitem id="menu_calendar_checklist_template" name="Checklist Template"
parent="calendar.calendar_menu_config"
action="action_calendar_checklist_template"
sequence="2"/>
</odoo>