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.

20 lines
635 B

  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_input_template_custom survey.survey form</field>
  5. <field name="model">survey.survey</field>
  6. <field name="inherit_id" ref="survey.survey_form"/>
  7. <field name="priority">21</field>
  8. <field name="arch" type="xml">
  9. <xpath expr="//notebook/page[last()]" position="inside">
  10. <group col="4">
  11. <field name="start_btn_label"/>
  12. <field name="thank_you_title"/>
  13. <field name="submit_btn_label"/>
  14. </group>
  15. </xpath>
  16. </field>
  17. </record>
  18. </odoo>