37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Device Form View -->
|
|
<record id="view_udm_device_form" model="ir.ui.view">
|
|
<field name="name">udm.device.form</field>
|
|
<field name="model">udm.device</field>
|
|
<field name="arch" type="xml">
|
|
<form string="UDM Pro Device">
|
|
<sheet>
|
|
<div class="oe_title">
|
|
<h1>
|
|
<field name="name"/>
|
|
</h1>
|
|
</div>
|
|
<group>
|
|
<group>
|
|
<field name="mac"/>
|
|
<field name="ip"/>
|
|
<field name="device_type"/>
|
|
</group>
|
|
<group>
|
|
<field name="model"/>
|
|
<field name="last_seen"/>
|
|
<field name="status" widget="badge" decoration-success="status == 'online'" decoration-danger="status == 'offline'" decoration-info="status == 'unknown'"/>
|
|
<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>
|