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.

24 lines
899 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. <tree position="attributes">
  8. <attribute name="colors">color_field: lang</attribute>
  9. </tree>
  10. <field name="login_date" position="attributes">
  11. <attribute name="options">{
  12. "bg_color": "#9e1635: login_date == False",
  13. "fg_color": "white: login_date == False"
  14. }</attribute>
  15. </field>
  16. <field name="name" position="attributes">
  17. <attribute name="options"> {
  18. "bg_color": "blue; #653b5b: login == 'admin'",
  19. "fg_color": "white"
  20. }</attribute>
  21. </field>
  22. </field>
  23. </record>
  24. </odoo>