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.

25 lines
850 B

  1. <?xml version="1.0"?>
  2. <openerp>
  3. <data>
  4. <!--
  5. Relationship Graph on Module object
  6. -->
  7. <record model="ir.ui.view" id="view_module_module_graph">
  8. <field name="name">ir.module.module.form.graph</field>
  9. <field name="model">ir.module.module</field>
  10. <field name="inherit_id" ref="base.module_form"/>
  11. <field name="type">form</field>
  12. <field name="arch" type="xml">
  13. <notebook position="inside">
  14. <page string="Relationship Graph">
  15. <separator colspan="4" string="You can save this image as .png file"/>
  16. <field name="file_graph" widget="image" nolabel="1" />
  17. </page>
  18. </notebook>
  19. </field>
  20. </record>
  21. </data>
  22. </openerp>