Browse Source

[ADD] demo view

pull/473/head
Holger Brunn 8 years ago
parent
commit
cf70d8590b
No known key found for this signature in database GPG Key ID: 1C9760FECA3AE18
  1. 3
      web_tree_dynamic_colored_field/__openerp__.py
  2. 22
      web_tree_dynamic_colored_field/demo/res_users.xml

3
web_tree_dynamic_colored_field/__openerp__.py

@ -10,6 +10,9 @@
'author': "Camptocamp,Therp BV,Odoo Community Association (OCA)",
'license': 'AGPL-3',
'website': 'https://github.com/OCA/web',
'demo': [
"demo/res_users.xml",
],
'data': [
'views/web_tree_dynamic_colored_field.xml',
],

22
web_tree_dynamic_colored_field/demo/res_users.xml

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<record id="view_users_tree" model="ir.ui.view">
<field name="model">res.users</field>
<field name="inherit_id" ref="base.view_users_tree" />
<field name="arch" type="xml">
<xpath expr="." position="attributes">
<attribute name="color_field">lang</attribute>
</xpath>
<field name="login_date" position="attributes">
<attribute name="bg_color">red: login_date == False</attribute>
<attribute name="fg_color">white: login_date == False</attribute>
</field>
<field name="name" position="attributes">
<attribute name="bg_color">red: login == 'admin'</attribute>
<attribute name="fg_color">white: login == 'admin'</attribute>
</field>
</field>
</record>
</data>
</openerp>
Loading…
Cancel
Save