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
769 B
22 lines
769 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="survey_survey_form" model="ir.ui.view">
|
|
<field name="name">survey_input_template_custom survey.survey form</field>
|
|
<field name="model">survey.survey</field>
|
|
<field name="inherit_id" ref="survey.survey_form"/>
|
|
<field name="priority">21</field>
|
|
<field name="arch" type="xml">
|
|
<field name="thank_you_message" position="before">
|
|
<field name="thank_you_title" string="Titre de la page"/>
|
|
</field>
|
|
<xpath expr="//notebook/page[descendant::field[@name='users_can_go_back']]" position="inside">
|
|
<group col="4">
|
|
<field name="start_btn_label"/>
|
|
<field name="submit_btn_label"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|