You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
992 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <record id="view_users_tree" model="ir.ui.view">
  5. <field name="model">res.users</field>
  6. <field name="inherit_id" ref="base.view_users_tree" />
  7. <field name="arch" type="xml">
  8. <xpath expr="." position="attributes">
  9. <attribute name="color_field">lang</attribute>
  10. </xpath>
  11. <field name="login_date" position="attributes">
  12. <attribute name="bg_color">red: login_date == False</attribute>
  13. <attribute name="fg_color">white: login_date == False</attribute>
  14. </field>
  15. <field name="name" position="attributes">
  16. <attribute name="bg_color">red: login == 'admin'</attribute>
  17. <attribute name="fg_color">white: login == 'admin'</attribute>
  18. </field>
  19. </field>
  20. </record>
  21. </data>
  22. </openerp>