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.

17 lines
476 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="page" inherit_id="survey.page">
  4. <xpath expr="//button[@t-if='last']" position="replace">
  5. <button t-if="last" type="submit" class="btn btn-primary" name="button_submit" value="finish">
  6. <t t-if="survey.submit_btn_label">
  7. <span t-field="survey.submit_btn_label"/>
  8. </t>
  9. <t t-else="">
  10. Submit survey
  11. </t>
  12. </button>
  13. </xpath>
  14. </template>
  15. </odoo>