Odoo modules related to surveys
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.

29 lines
1.1 KiB

1 year ago
1 year ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="survey_survey_form" model="ir.ui.view">
  4. <field name="name">survey_description survey.survey form</field>
  5. <field name="model">survey.survey</field>
  6. <field name="inherit_id" ref="survey.survey_form"/>
  7. <field name="priority">20</field>
  8. <field name="arch" type="xml">
  9. <xpath expr="//notebook/page[descendant::field[@name='page_ids']]" position="after">
  10. <page name="description" string="Description">
  11. <group>
  12. <p colspan="2" class="text-muted oe_edit_only">
  13. This content will be displayed between the title of the survey and the "Start" button, on the answer homepage.<br/>
  14. You can also add a custom content on each page of the survey through the "Description" field on each page.
  15. </p>
  16. <field name="description" nolabel="1" colspan="2"/>
  17. </group>
  18. </page>
  19. <page name="thank_you" string="Thank you page">
  20. <group class="o_label_nowrap">
  21. <field name="thank_you_message"/>
  22. </group>
  23. </page>
  24. </xpath>
  25. </field>
  26. </record>
  27. </odoo>