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
750 B
22 lines
750 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Copyright 2017 LasLabs Inc.
|
|
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="view_users_form" model="ir.ui.view">
|
|
<field name="name">res.users.form</field>
|
|
<field name="model">res.users</field>
|
|
<field name="inherit_id" ref="base.view_users_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//page[@name='access_rights']" position="inside">
|
|
<group name="user_threshold" string="User Threshold">
|
|
<field name="threshold_exempt"
|
|
string="Exempt From Threshold" />
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|