{% extends "base.html" %} {% block title %}Results – {{ quiz_name }}{% endblock %} {% block content %}

{{ quiz_name }}

Your Score

{{ score }} / {{ total }}

{{ ((score / total * 100) | round) | int }}%

Review

{% for item in review %}
Q{{ item.num }} {% if item.is_correct %}✓{% else %}✗{% endif %}

{{ item.question_text }}

Your answer: {{ item.user_answers | join(", ") if item.user_answers else "(none)" }}  ·  Correct: {{ item.correct_answers | join(", ") }}

{% endfor %}
Back to Quizzes
{% endblock %}