[FIX] Thread widget: cleaned function calls (using this.proxy) to avoid asynchronous...
[odoo/odoo.git] / addons / base_module_doc_rst / base_module_doc_rst_view.xml
1 <?xml version="1.0"?>
2 <openerp>
3     <data>
4
5         <!--
6             Relationship Graph on Module object
7         -->
8
9         <record model="ir.ui.view" id="view_module_module_graph">
10             <field name="name">ir.module.module.form.graph</field>
11             <field name="model">ir.module.module</field>
12             <field name="inherit_id" ref="base.module_form"/>
13             <field name="type">form</field>
14             <field name="arch" type="xml">
15                 <notebook position="inside">
16                     <page string="Relationship Graph">
17                         <separator colspan="4" string="You can save this image as .png file"/>
18                         <field name="file_graph" widget="image" nolabel="1" />
19                     </page>
20                 </notebook>
21             </field>
22         </record>
23
24     </data>
25 </openerp>