File: dashboard.xml

package info (click to toggle)
tryton-modules-dashboard 2.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 228 kB
  • sloc: python: 326; xml: 120; makefile: 7
file content (39 lines) | stat: -rw-r--r-- 1,336 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0"?>
<!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
    <data>

        <record model="ir.ui.view" id="action_view_form">
            <field name="model">dashboard.action</field>
            <field name="type">form</field>
            <field name="arch" type="xml">
                <![CDATA[
                <form string="Dashboard Action">
                    <label name="user"/>
                    <field name="user"/>
                    <label name="sequence"/>
                    <field name="sequence"/>
                    <label name="act_window"/>
                    <field name="act_window"/>
                </form>
                ]]>
            </field>
        </record>

        <record model="ir.ui.view" id="action_view_tree">
            <field name="model">dashboard.action</field>
            <field name="type">tree</field>
            <field name="arch" type="xml">
                <![CDATA[
                <tree string="Dashboard Actions">
                    <field name="user"/>
                    <field name="sequence"/>
                    <field name="act_window"/>
                </tree>
                ]]>
            </field>
        </record>

    </data>
</tryton>