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
1023 B
22 lines
1023 B
<?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="//group[@name='signature']" position="after">
|
|
<group name="todoist" string="Todoist Settings">
|
|
<field name="todoist_token" readonly="0"
|
|
options="{'style-inline': true}"/>
|
|
<button name="action_sync_todoist_with_odoo"
|
|
string="Sync with Todoist"
|
|
type="object"
|
|
class="btn btn-primary"
|
|
icon="fa-refresh"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|