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.

19 lines
601 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="survey_page_form" model="ir.ui.view">
  4. <field name="name">survey_description survey.page form</field>
  5. <field name="model">survey.page</field>
  6. <field name="inherit_id" ref="survey.survey_page_form"/>
  7. <field name="priority">20</field>
  8. <field name="arch" type="xml">
  9. <h1 position="after">
  10. <label for="description" class="oe_edit_only"/>
  11. </h1>
  12. <field name="question_ids" position="before">
  13. <field name="description" nolabel="1" colspan="2"/>
  14. </field>
  15. </field>
  16. </record>
  17. </odoo>