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
829 B
22 lines
829 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!--wizard for user selection-->
|
|
<record id="user_selection_view_form" model="ir.ui.view">
|
|
<field name="name">user.selection.view.form</field>
|
|
<field name="model">user.selection</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Select User">
|
|
<group>
|
|
<field name="user_id"/>
|
|
</group>
|
|
<field name="access_ids"/>
|
|
<footer>
|
|
<button name="action_switch" string="Switch User"
|
|
type="object" class="btn-primary"/>
|
|
<button string="Cancel" special="cancel"
|
|
class="btn-secondary"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|