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.

20 lines
895 B

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