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

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!--View configuration manager list view-->
<record id="configuration_manager_view_tree" model="ir.ui.view">
<field name="name">configuration.manager.view.tree</field>
<field name="model">configuration.manager</field>
<field name="arch" type="xml">
<tree>
<field name="instance"/>
<field name="token"/>
<field name="state"/>
</tree>
</field>
</record>
<!--View configuration manager form view-->
<record id="configuration_manager_view_form" model="ir.ui.view">
<field name="name">configuration.manager.view.form</field>
<field name="model">configuration.manager</field>
<field name="arch" type="xml">
<form>
<sheet>
<group>
<group>
<field name="instance"/>
<field name="token"/>
<field name="state"/>
<button name="action_authenticate" type="object"
class="oe_highlight" string="Authenticate"/>
</group>
</group>
</sheet>
</form>
</field>
</record>
<!--Action for view configuration manager list and form view-->
<record id="configuration_manager_action" model="ir.actions.act_window">
<field name="name">Configuration Manager</field>
<field name="res_model">configuration.manager</field>
<field name="view_mode">tree,form</field>
</record>
</odoo>