mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 10:42:08 +00:00
61 lines
2.2 KiB
XML
61 lines
2.2 KiB
XML
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||
|
<!--
|
||
|
Copyright (C) 2019-Today GRAP (http://www.grap.coop)
|
||
|
Copyright (C) 2020 Iván Todorovich (https://twitter.com/ivantodorovich)
|
||
|
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
-->
|
||
|
<flectra>
|
||
|
<record id="view_mass_editing_wizard_form" model="ir.ui.view">
|
||
|
<field name="model">mass.editing.wizard</field>
|
||
|
<field name="arch" type="xml">
|
||
|
<form>
|
||
|
<header />
|
||
|
<p
|
||
|
class="oe_grey"
|
||
|
attrs="{'invisible':
|
||
|
[('message', '=', False)]}"
|
||
|
>
|
||
|
<field name="message" />
|
||
|
</p>
|
||
|
<p
|
||
|
class="alert alert-info"
|
||
|
role="alert"
|
||
|
attrs="{'invisible':
|
||
|
[('operation_description_info', '=', False)]}"
|
||
|
>
|
||
|
<field name="operation_description_info" />
|
||
|
</p>
|
||
|
<p
|
||
|
class="alert alert-warning"
|
||
|
role="alert"
|
||
|
attrs="{'invisible':
|
||
|
[('operation_description_warning', '=', False)]}"
|
||
|
>
|
||
|
<field name="operation_description_warning" />
|
||
|
</p>
|
||
|
<p
|
||
|
class="alert alert-danger"
|
||
|
role="alert"
|
||
|
attrs="{'invisible': [('operation_description_danger', '=', False)]}"
|
||
|
>
|
||
|
<field name="operation_description_danger" />
|
||
|
</p>
|
||
|
<group>
|
||
|
<group name="group_field_list" colspan="4" col="6">
|
||
|
</group>
|
||
|
</group>
|
||
|
<footer>
|
||
|
<button
|
||
|
string="Apply"
|
||
|
name="button_apply"
|
||
|
type="object"
|
||
|
class="oe_highlight"
|
||
|
/>
|
||
|
<button string="Cancel" class="oe_link" special="cancel" />
|
||
|
</footer>
|
||
|
</form>
|
||
|
</field>
|
||
|
</record>
|
||
|
</flectra>
|