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.
52 lines
1.6 KiB
52 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2019-Today: GRAP (<http://www.grap.coop/>)
|
|
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="view_ir_module_author_form" model="ir.ui.view">
|
|
<field name="model">ir.module.author</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<div class="oe_title">
|
|
<div class="oe_edit_only"><label for="name"/></div>
|
|
<h1><field name="name"/></h1>
|
|
</div>
|
|
<group>
|
|
<field name="installed_module_qty"/>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
<record id="view_ir_module_author_tree" model="ir.ui.view">
|
|
<field name="model">ir.module.author</field>
|
|
<field name="arch" type="xml">
|
|
<tree>
|
|
<field name="name"/>
|
|
<field name="installed_module_qty"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_ir_module_author" model="ir.actions.act_window">
|
|
<field name="name">Modules Authors</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">ir.module.author</field>
|
|
<field name="view_type">form</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
|
|
|
|
<menuitem id="menu_module_authors"
|
|
parent="menu_module_analysis_settings" sequence="1"
|
|
action="action_ir_module_author"
|
|
groups="base.group_no_one"/>
|
|
|
|
</odoo>
|