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.
29 lines
1.3 KiB
29 lines
1.3 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- This XML file defines the configuration view for the Kanban Sticky State feature. -->
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">
|
|
res.config.settings.view.form.inherit.kanban.sticky.state
|
|
</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="priority" eval="15"/>
|
|
<field name="inherit_id"
|
|
ref="base_setup.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<div id="companies" position="after">
|
|
<h2>Kanban Sticky State</h2>
|
|
<div class="row mt16 o_settings_container"
|
|
id="website_shop_address">
|
|
<div class="col-12 col-lg-6 o_setting_box">
|
|
<div class="o_setting_right_pane">
|
|
<label for="is_kanban_sticky_state"
|
|
string="Kanban Sticky State" class="kanban-label"/>
|
|
<field name="is_kanban_sticky_state"
|
|
widget="boolean_toggle"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|