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.
23 lines
913 B
23 lines
913 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- form view for the question duplicate wizard-->
|
|
<record id="question_duplicate_view_form" model="ir.ui.view">
|
|
<field name="name">question.duplicate.view.form</field>
|
|
<field name="model">question.duplicate</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>
|
|
|