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
1.1 KiB
24 lines
1.1 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!--Sync button record with field to provide access token-->
|
|
<record id="view_users_form_simple_modif" model="ir.ui.view">
|
|
<field name="name">res.users.view.form.inherit.todoist.project</field>
|
|
<field name="model">res.users</field>
|
|
<field name="inherit_id" ref="base.view_users_form_simple_modif"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='avatar_128']" position="before">
|
|
<div class="oe_button_box" name="button_box">
|
|
<button name="action_sync_todoist_with_odoo" type="object"
|
|
class="oe_stat_button" icon="fa-refresh"
|
|
string="Sync With Todoist"/>
|
|
</div>
|
|
</xpath>
|
|
<xpath expr="//group[@name='signature']" position="after">
|
|
<group name="todoist" string="Todoist Settings">
|
|
<field name="todoist_token" readonly="0"
|
|
options="{'style-inline': true}"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|