33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- System Info Form View -->
|
|
<record id="view_udm_system_info_form" model="ir.ui.view">
|
|
<field name="name">udm.system.info.form</field>
|
|
<field name="model">udm.system.info</field>
|
|
<field name="arch" type="xml">
|
|
<form string="UDM Pro System Information">
|
|
<sheet>
|
|
<group>
|
|
<group>
|
|
<field name="hostname"/>
|
|
<field name="version"/>
|
|
<field name="model"/>
|
|
<field name="serial"/>
|
|
</group>
|
|
<group>
|
|
<field name="mac_address"/>
|
|
<field name="uptime" invisible="1"/>
|
|
<field name="uptime_human"/>
|
|
<field name="config_id"/>
|
|
</group>
|
|
</group>
|
|
<notebook>
|
|
<page string="Raw Data" name="raw_data">
|
|
<field name="raw_data" widget="ace" options="{'mode': 'json'}" help="Données JSON brutes de la configuration"/>
|
|
</page>
|
|
</notebook>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|