mirror of
https://github.com/NaN-tic/trytond-network.git
synced 2023-12-14 04:12:57 +01:00
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<?xml version="1.0"?>
|
|
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
|
this repository contains the full copyright notices and license terms. -->
|
|
<tryton>
|
|
<data>
|
|
<record model="ir.ui.view" id="network_configuration_view_form">
|
|
<field name="model">network.configuration</field>
|
|
<field name="type">form</field>
|
|
<field name="name">configuration_form</field>
|
|
</record>
|
|
<record model="ir.action.act_window" id="act_network_configuration_form">
|
|
<field name="name">Network Configuration</field>
|
|
<field name="res_model">network.configuration</field>
|
|
</record>
|
|
<record model="ir.action.act_window.view"
|
|
id="act_network_configuration_view1">
|
|
<field name="sequence" eval="1"/>
|
|
<field name="view" ref="network_configuration_view_form"/>
|
|
<field name="act_window" ref="act_network_configuration_form"/>
|
|
</record>
|
|
<menuitem parent="menu_configuration"
|
|
action="act_network_configuration_form"
|
|
id="menu_network_configuration"
|
|
sequence="0" icon="tryton-list"/>
|
|
</data>
|
|
</tryton>
|