~technofluid-team/openobject-addons/technofluid_multiple_installations

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0"?>
<openerp>
    <data>

        <!--
            Relationship Graph on Module object
        -->

        <record model="ir.ui.view" id="view_module_module_graph">
            <field name="name">ir.module.module.form.graph</field>
            <field name="model">ir.module.module</field>
            <field name="inherit_id" ref="base.module_form"/>
            <field name="type">form</field>
            <field name="arch" type="xml">
                <notebook position="inside">
                    <page string="Relationship Graph">
                        <separator colspan="4" string="You can save this image as .png file"/>
                        <field name="file_graph" widget="image" nolabel="1" />
                    </page>
                </notebook>
            </field>
        </record>

    </data>
</openerp>