{% extends "base.html" %} {% block title %}{{ attempt.full_name }}'s attempt – {{ quiz_name }}{% endblock %} {% block content %}
← {{ quiz_name }}

{{ attempt.full_name }}'s Submission

{{ quiz_name }} · Score: {{ attempt.score }} / {{ attempt.total }} ({{ ((attempt.score / attempt.total * 100) | round) | int }}%) · {{ attempt.completed_at }}

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

{{ item.question_text }}

{% if item.question_type == "multiple_answer" %}

Multiple answers

{% endif %}
    {% for opt in item.options %}
  • {{ opt.id }} {{ opt.text }} {% if opt.id in item.user_answers %} User {% endif %} {% if opt.id in item.correct_answers %} Correct {% endif %}
  • {% endfor %}
Explanation: {{ item.explanation }}
{% endfor %}
{% endblock %}