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

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright (C) 2019-Today: GRAP (<http://www.grap.coop/>)
  4. @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
  5. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  6. -->
  7. <odoo>
  8. <record id="view_ir_module_author_form" model="ir.ui.view">
  9. <field name="model">ir.module.author</field>
  10. <field name="arch" type="xml">
  11. <form>
  12. <sheet>
  13. <div class="oe_title">
  14. <div class="oe_edit_only"><label for="name"/></div>
  15. <h1><field name="name"/></h1>
  16. </div>
  17. <group>
  18. <field name="installed_module_qty"/>
  19. </group>
  20. </sheet>
  21. </form>
  22. </field>
  23. </record>
  24. <record id="view_ir_module_author_tree" model="ir.ui.view">
  25. <field name="model">ir.module.author</field>
  26. <field name="arch" type="xml">
  27. <tree>
  28. <field name="name"/>
  29. <field name="installed_module_qty"/>
  30. </tree>
  31. </field>
  32. </record>
  33. <record id="action_ir_module_author" model="ir.actions.act_window">
  34. <field name="name">Modules Authors</field>
  35. <field name="type">ir.actions.act_window</field>
  36. <field name="res_model">ir.module.author</field>
  37. <field name="view_type">form</field>
  38. <field name="view_mode">tree,form</field>
  39. </record>
  40. <menuitem id="menu_module_authors"
  41. parent="menu_module_analysis" sequence="1"
  42. action="action_ir_module_author"
  43. groups="base.group_no_one"/>
  44. </odoo>