mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-14 18:22:05 +00:00
27 lines
973 B
XML
27 lines
973 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2019 Ecosoft Co., Ltd. (http://ecosoft.co.th)
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
<flectra>
|
|
<record id="view_comment_wizard" model="ir.ui.view">
|
|
<field name="name">Comment Wizard</field>
|
|
<field name="model">comment.wizard</field>
|
|
<field name="type">form</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Comment">
|
|
<group>
|
|
<field name="comment" nolabel="1" />
|
|
</group>
|
|
<footer>
|
|
<button
|
|
name="add_comment"
|
|
string="Comment"
|
|
type="object"
|
|
class="oe_highlight"
|
|
/>
|
|
<button special="cancel" string="Cancel" class="oe_link" />
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</flectra>
|