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.

15 lines
527 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <data>
  4. <template id="survey_fill_form_done" name="Survey: finished score" inherit_id="survey.survey_fill_form_done">
  5. <xpath expr="//t[@t-if='answer.scoring_success']/div[1]" position="after">
  6. <div t-field="survey.description_done_pass" class="oe_no_empty" />
  7. </xpath>
  8. <xpath expr="//t[@t-else='']/div[1]" position="after">
  9. <div t-field="survey.description_done_fail" class="oe_no_empty" />
  10. </xpath>
  11. </template>
  12. </data>
  13. </odoo>