mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2023 Hunki Enterprises BV
|
|
Copyright 2024 initOS GmbH
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl-3.0) -->
|
|
<data>
|
|
<record id="view_res_users_form" model="ir.ui.view">
|
|
<field name="model">res.users</field>
|
|
<field name="inherit_id" ref="base.view_users_form_simple_modif" />
|
|
<field name="arch" type="xml">
|
|
<notebook position="inside">
|
|
<page name="base_ical" string="Calendars">
|
|
<label for="ical_ids" string="Calendars" />
|
|
<field name="ical_ids">
|
|
<tree>
|
|
<button
|
|
type="object"
|
|
name="action_new_url"
|
|
string="New URL"
|
|
/>
|
|
<field name="name" />
|
|
</tree>
|
|
</field>
|
|
|
|
<!-- TODO: Re-evaluate after migration to 16.0 -->
|
|
<label for="api_key_ids" string="Existing Access" />
|
|
<field
|
|
name="api_key_ids"
|
|
domain="[('scope', '=like', 'odoo.plugin.ical.%')]"
|
|
nolabel="1"
|
|
readonly="1"
|
|
>
|
|
<tree create="false">
|
|
<field name="name" />
|
|
<field name="scope" />
|
|
<field name="create_date" />
|
|
<button type="object" name="remove" icon="fa-trash" />
|
|
</tree>
|
|
</field>
|
|
</page>
|
|
</notebook>
|
|
</field>
|
|
</record>
|
|
</data>
|