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.

21 lines
724 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="survey_survey_form" model="ir.ui.view">
<field name="name">survey_description survey.survey form</field>
<field name="model">survey.survey</field>
<field name="inherit_id" ref="survey.survey_form"/>
<field name="priority">20</field>
<field name="arch" type="xml">
<xpath expr="//notebook/page[1]" position="after">
<page name="description" string="Description">
<field name="description" nolabel="1" colspan="2"/>
</page>
<page name="thank_you" string="Thank you page">
<field name="thank_you_message" nolabel="1" colspan="2"/>
</page>
</xpath>
</field>
</record>
</odoo>