{% extends "base.html" %} {% block content %}

{% if response.survey.quizz_mode %} Results for {{response.survey.title}} quizz ‐ Your score : {{score}}% {% else %} Your Answers for {{response.survey.title}} {% endif %}

Description

{{response.survey.description}}

{% for answer in answers %}

{{answer.question.text}}

{% if answer.question.get_choices %} {% for choice in answer.question.get_choices %}
{{choice.0}} {% if response.survey.quizz_mode %} {% if choice.0 in answer.question.get_correct_answer %} V {% else %} {% if choice.0 in answer.body %} X {% endif %} {% endif %} {% endif %}
{% endfor %} {% else %} {{answer.body}} {% endif %} {% endfor %}
{% endblock %}