mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-14 18:22:05 +00:00
118 lines
5.9 KiB
XML
118 lines
5.9 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!--
|
|
Copyright 2019 Brainbean Apps (https://brainbeanapps.com)
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
-->
|
|
<flectra>
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="base_setup.res_config_settings_view_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath
|
|
expr="//div[hasclass('app_settings_block')][@data-key='general_settings']"
|
|
position="inside"
|
|
>
|
|
<h2>Locale</h2>
|
|
<div class="row mt16 o_settings_container" name="locale">
|
|
<div class="col-12 col-lg-6 o_setting_box">
|
|
<div class="o_setting_left_pane" />
|
|
<div class="o_setting_right_pane">
|
|
<label for="date_format" />
|
|
<span
|
|
class="fa fa-lg fa-building-o"
|
|
title="Values set here are company-specific."
|
|
role="img"
|
|
aria-label="Values set here are company-specific."
|
|
groups="base.group_multi_company"
|
|
/>
|
|
<div class="text-muted">
|
|
Configure global override of date format for all users.
|
|
</div>
|
|
<div class="content-group mt16">
|
|
<field name="date_format" nolabel="1" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-6 o_setting_box">
|
|
<div class="o_setting_left_pane" />
|
|
<div class="o_setting_right_pane">
|
|
<label for="time_format" />
|
|
<span
|
|
class="fa fa-lg fa-building-o"
|
|
title="Values set here are company-specific."
|
|
role="img"
|
|
aria-label="Values set here are company-specific."
|
|
groups="base.group_multi_company"
|
|
/>
|
|
<div class="text-muted">
|
|
Configure global override of time format for all users.
|
|
</div>
|
|
<div class="content-group mt16">
|
|
<field name="time_format" nolabel="1" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-6 o_setting_box">
|
|
<div class="o_setting_left_pane" />
|
|
<div class="o_setting_right_pane">
|
|
<label for="week_start" />
|
|
<span
|
|
class="fa fa-lg fa-building-o"
|
|
title="Values set here are company-specific."
|
|
role="img"
|
|
aria-label="Values set here are company-specific."
|
|
groups="base.group_multi_company"
|
|
/>
|
|
<div class="text-muted">
|
|
Configure global override of week start for all users.
|
|
</div>
|
|
<div class="content-group mt16">
|
|
<field name="week_start" nolabel="1" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-6 o_setting_box">
|
|
<div class="o_setting_left_pane" />
|
|
<div class="o_setting_right_pane">
|
|
<label for="decimal_point" />
|
|
<span
|
|
class="fa fa-lg fa-building-o"
|
|
title="Values set here are company-specific."
|
|
role="img"
|
|
aria-label="Values set here are company-specific."
|
|
groups="base.group_multi_company"
|
|
/>
|
|
<div class="text-muted">
|
|
Configure global override of time format for all users.
|
|
</div>
|
|
<div class="content-group mt16">
|
|
<field name="decimal_point" nolabel="1" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-6 o_setting_box">
|
|
<div class="o_setting_left_pane" />
|
|
<div class="o_setting_right_pane">
|
|
<label for="thousands_sep" />
|
|
<span
|
|
class="fa fa-lg fa-building-o"
|
|
title="Values set here are company-specific."
|
|
role="img"
|
|
aria-label="Values set here are company-specific."
|
|
groups="base.group_multi_company"
|
|
/>
|
|
<div class="text-muted">
|
|
Configure global override of time format for all users.
|
|
</div>
|
|
<div class="content-group mt16">
|
|
<field name="thousands_sep" nolabel="1" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</flectra>
|