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.
26 lines
1.1 KiB
26 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inherits Res User form view to add trello fields -->
|
|
<record id="view_users_form" model="ir.ui.view">
|
|
<field name="name">res.users.view.form.inherit.odoo.trello.connector
|
|
</field>
|
|
<field name="model">res.users</field>
|
|
<field name="type">form</field>
|
|
<field name="inherit_id" ref="base.view_users_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//page[@name='preferences']" position="after">
|
|
<page string="Trello" name="Trello">
|
|
<group>
|
|
<field name="user_name" string="Trello Username"/>
|
|
<field name="api_key" string="API Key"/>
|
|
<field name="token" string="Token"/>
|
|
<button string="Import"
|
|
type="object" name="action_import"/>
|
|
<button string="Export"
|
|
type="object" name="action_export"/>
|
|
</group>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|