OCA/server-tools

View on GitHub
base_module_doc_rst/base_module_doc_rst_view.xml

Summary

Maintainability
Test Coverage
<?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>