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.
 
 
 
 
 

48 lines
1.9 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- tree view for the gdpr.template-->
<record id="gdpr_template_view_tree" model="ir.ui.view">
<field name="name">gdpr.template.view.tree</field>
<field name="model">gdpr.template</field>
<field name="arch" type="xml">
<tree>
<field name="name"/>
<field name="field_ids"/>
<field name="description"/>
</tree>
</field>
</record>
<!--form view for the gdpr.template-->
<record id="gdpr_template_view_form" model="ir.ui.view">
<field name="name">gdpr.template.view.form</field>
<field name="model">gdpr.template</field>
<field name="arch" type="xml">
<form>
<sheet>
<div class="oe_button_box" name="button_box">
<button name="action_archive_template" type="object"
icon="fa-archive" string="Archive"
class="oe_stat_button"/>
</div>
<group>
<group>
<field name="name"/>
<field name="description"/>
<field name="field_ids" widget="many2many_tags"/>
<field name="active" invisible="1"/>
</group>
</group>
</sheet>
</form>
</field>
</record>
<!-- action for gdpr.template-->
<record id="gdpr_template_action" model="ir.actions.act_window">
<field name="name">GDPR Template</field>
<field name="res_model">gdpr.template</field>
<field name="view_mode">tree,form</field>
</record>
<!-- menu item for gdpr.template-->
<menuitem id="gdpr_main_root_template" name="GDPR Template"
parent="gdpr_main_root" action="gdpr_template_action"/>
</odoo>