{% extends "base.html" %} {% load richtext %} {% block title %}Results – {{ course.title|exam_marks }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
← Back to course

{{ course.title|exam_marks }}

Practice Complete

{% if score_percent >= 80 %}
{{ score_percent }}%
Excellent work!
{% elif score_percent >= 60 %}
{{ score_percent }}%
Good effort — keep reviewing!
{% else %}
{{ score_percent }}%
Keep practicing — you'll get there!
{% endif %}
{{ correct }} correct out of {{ total }} questions
Question-by-Question Breakdown
{% for item in question_results %} {% with attempt=item.attempt question=item.question %}
{% if attempt.is_correct %}✓{% else %}✕{% endif %}
Question {{ forloop.counter }}
{{ question.text|richtext }}
{% if attempt.is_correct %} Your answer: {{ attempt.selected_choice.text|exam_marks }} {% else %} Your answer: {{ attempt.selected_choice.text|exam_marks }}   Correct: {% for c in question.choices.all %}{% if c.is_correct %}{{ c.text|exam_marks }}{% endif %}{% endfor %} {% endif %}
{% if attempt.ai_feedback %}
{{ attempt.ai_feedback|richtext }}
{% endif %}
{% endwith %} {% endfor %}
{% endblock %}