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.
22 lines
848 B
22 lines
848 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record id="question_wizard_view_form" model="ir.ui.view">
|
|
<field name="name">question.duplicate.wizard</field>
|
|
<field name="model">question.wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form name="question">
|
|
<group>
|
|
<field name="survey_ids" widget="many2many_tags"/>
|
|
</group>
|
|
<footer>
|
|
<button class="btn-secondary" string="Cancel"
|
|
special="cancel"/>
|
|
<button name="action_check_survey" type="object"
|
|
class="btn btn-primary change_stage_action">Add To
|
|
Survey
|
|
</button>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|