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
470 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="survey_init" inherit_id="survey.survey_init">
  4. <a role="button" position="replace">
  5. <a role="button" class="btn btn-primary btn-lg" t-att-href="'/survey/fill/%s/%s' % (slug(survey), token)">
  6. <t t-if="survey.start_btn_label">
  7. <span t-field="survey.start_btn_label"/>
  8. </t>
  9. <t t-else="">
  10. Start Survey
  11. </t>
  12. </a>
  13. </a>
  14. </template>
  15. </odoo>