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
930 B

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <odoo>
  3. <record model="ir.ui.view" id="portal_wizard">
  4. <field name="model">portal.wizard</field>
  5. <field name="inherit_id" ref="portal.wizard_view" />
  6. <field name="arch" type="xml">
  7. <field name="user_ids" position="before">
  8. <group>
  9. <field name="set_all_users" string="Invite all the contacts" />
  10. </group>
  11. <div
  12. class="card bg-warning mb8"
  13. attrs="{'invisible': [('set_all_users', '=', False)]}"
  14. >
  15. <div class="card-body bg-warning">
  16. <i
  17. class="fa fa-warning"
  18. /> You're about to invite all contacts listed below to the portal.
  19. </div>
  20. </div>
  21. </field>
  22. </field>
  23. </record>
  24. </odoo>