File: dashboard.xml

package info (click to toggle)
tryton-modules-dashboard 1.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 208 kB
  • ctags: 45
  • sloc: python: 301; xml: 121; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 1,358 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" select="1"/>
                    <field name="sequence"/>
                    <field name="act_window" select="1"/>
                </tree>
                ]]>
            </field>
        </record>

    </data>
</tryton>