49 lines
2.1 KiB
XML
Executable File
49 lines
2.1 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="action_syncra_welcome" model="ir.actions.act_window">
|
|
<field name="name">Bem-vindo ao SYNCRA</field>
|
|
<field name="res_model">syncra.welcome</field>
|
|
<field name="view_mode">list,form</field>
|
|
</record>
|
|
|
|
<record id="view_syncra_welcome_list" model="ir.ui.view">
|
|
<field name="name">syncra.welcome.list</field>
|
|
<field name="model">syncra.welcome</field>
|
|
<field name="arch" type="xml">
|
|
<list string="Boas-Vindas">
|
|
<field name="name"/>
|
|
<field name="welcome_message"/>
|
|
</list>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_syncra_welcome_form" model="ir.ui.view">
|
|
<field name="name">syncra.welcome.form</field>
|
|
<field name="model">syncra.welcome</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Boas-Vindas">
|
|
<header id="syncra_header">
|
|
<button name="action_open_gitea" string="Aceder Gitea SYNCRA" type="object" class="oe_highlight" icon="fa-code"/>
|
|
<button name="action_open_cockpit" string="Monitorizar Servidor" type="object" icon="fa-dashboard"/>
|
|
<button name="action_open_netdata" string="NetData Servidor" type="object" icon="fa-dashboard"/>
|
|
</header>
|
|
<sheet>
|
|
<div class="oe_title">
|
|
<h1><field name="name" placeholder="Ex: Mensagem para o modulo"/></h1>
|
|
</div>
|
|
<notebook id="syncra_notebook">
|
|
<page string="Geral" name="general">
|
|
<group>
|
|
<field name="welcome_message" widget="text"/>
|
|
</group>
|
|
</page>
|
|
</notebook>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<menuitem id="menu_syncra_root" name="SYNCRA" sequence="10"/>
|
|
<menuitem id="menu_syncra_welcome" name="Boas-Vindas" parent="menu_syncra_root" action="action_syncra_welcome" sequence="10"/>
|
|
</odoo>
|