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.
41 lines
1.6 KiB
41 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
<record id="py3o_template_configuration_form_view" model="ir.ui.view">
|
|
<field name="name">py3o.template.configuration.form.view</field>
|
|
<field name="model">py3o.template</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Py3o Templates Configuration" version="7.0">
|
|
<sheet>
|
|
<group>
|
|
<field name="name" />
|
|
<field name="py3o_template_data" />
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="py3o_template_configuration_tree_view" model="ir.ui.view">
|
|
<field name="name">py3o.template.configuration.tree.view</field>
|
|
<field name="model">py3o.template</field>
|
|
<field name="arch" type="xml">
|
|
<tree string="Py3o Templates Configuration" version="7.0">
|
|
<field name="name" />
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="py3o_template_configuration_action" model="ir.actions.act_window">
|
|
<field name="name">Py3o Templates Configuration</field>
|
|
<field name="res_model">py3o.template</field>
|
|
<field name="view_type">form</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
|
|
<menuitem id="py3o_template_configuration_menu"
|
|
name="Py3o Templates"
|
|
parent="py3o_config_menu"
|
|
action="py3o_template_configuration_action" />
|
|
</data>
|
|
</openerp>
|