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.
19 lines
768 B
19 lines
768 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!--This is used to add a new button-->
|
|
<record id="view_users_form" model="ir.ui.view">
|
|
<field name="name">res.users.view.form.inherit.form.sticky.notes
|
|
</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 string="Sticky Notes">
|
|
<button class="fa fa-thumb-tack =" type="object"
|
|
name="action_user_sticky_notes"
|
|
string="Sticky notes"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|