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.
16 lines
728 B
16 lines
728 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!--This XML code defines a new view for the `res.users` model in Odoo. It inherits
|
|
the `view_users_form` view and adds a new field for the password hint.-->
|
|
<record id="view_users_form" model="ir.ui.view">
|
|
<field name="name">res.users.view.form.inherit.password.hint</field>
|
|
<field name="model">res.users</field>
|
|
<field name="inherit_id" ref="base.view_users_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='login']" position="after">
|
|
<label for="password_hint">Password Hint:</label>
|
|
<field name="password_hint"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|