Quiz Results
Score: {{ score }} out of {{ total }}
Mistakes
{% if mistakes %}
{% for mistake in mistakes %}
-
Question: {{ mistake['question'] }}
Your Answer: {{ mistake['answer'] }}
Correct Answer: {{ mistake['correct'] }}
{% endfor %}
{% else %}
No mistakes!
{% endif %}
All Answers
{% for question in vir_questions %}
-
{{ question['question'] }}
Correct Answer: {{ question['answer'] }}
{% endfor %}