{% load i18n static %} {% translate "Quiz results summary" %}

{% translate "Quiz results summary" %}

{% if quiz_type == "weighed_answers_quiz" and conclusion.points %} {% blocktranslate with points=conclusion.points plural=conclusion.points|pluralize %} Result: {{ points }} point{{ plural }} {% endblocktranslate %} {% elif quiz_type == "interpretation_quiz" %} {{ conclusion }} {% endif %}

{{ conclusion.description|safe }}
{% if quiz_type == "weighed_answers_quiz" %} {% for dict in final_quiz %}
{{ dict.question.label }} {% for answer in dict.answers %}
{% empty %}

{% translate "You haven't selected any answer." %}

{% endfor %}
{% endfor %} {% elif quiz_type == "interpretation_quiz" %} {% for dict in final_quiz %}
{{ dict.question.label }}
{% endfor %} {% endif %}