{% extends "base.html" %} {% load static exam_content %} {% block title %}Results | {{ attempt.exam_set.title }}{% endblock %} {% block extra_css %}{% if use_split_reading_review %}{% endif %}{% endblock %} {% block content %} {% if use_split_reading_review %}
Reading · Review

{{ attempt.exam_set.title }}

Raw score{{ correct_count }} / {{ total_gradable }}
{% if reading_band_estimated %}Estimated band{% else %}Reading band{% endif %}{{ reading_band|floatformat:1 }} / 9{% if reading_band_estimated %}Equivalent to {{ reading_equivalent }} / 40{% endif %}
{% csrf_token %}

{{ attempt.exam_set.title }}

{% for section in reading_passages %}
{{ section.passage_text|render_rich_text }}
{% endfor %}
{% for answer in reading_review_answers %}

Question {{ forloop.counter }} of {{ reading_review_answers|length }}

{{ answer.question.prompt|render_rich_text }}
Your answer{{ answer.answer_text|default:"No answer submitted" }}
Correct answer{{ answer.question.correct_answer|default:"Instructor reviewed" }}
{% if answer.question.passage_reference %}
{{ answer.question.passage_reference }}
{% else %}

No exact passage sentence has been attached to this question.

{% endif %}
{% endfor %}
{% else %}
Completed test · Review

{{ attempt.exam_set.title }}

Review your responses and grading status.

{{ answers|length }} responses{% if pending_manual %}{{ pending_manual }} awaiting review{% endif %}
{% csrf_token %}
Performance summary

Your test results

Objective answers are scored immediately. Instructor-reviewed responses update after grading.

Objective score{% if total_gradable %}{{ correct_count }} / {{ total_gradable }}{% else %}Not applicable{% endif %}
Manual band average{% if average_manual_score is not None %}{{ average_manual_score|floatformat:1 }} / 9{% else %}Awaiting review{% endif %}
Awaiting review{{ pending_manual }}
Answer review

Your responses

{% for answer in answers %}
{{ answer.question.order }}
{{ answer.question.prompt|render_rich_text }}
Your answer

{{ answer.answer_text|default:"No typed answer submitted"|linebreaksbr }}

{% if answer.audio_response %}{% endif %}
{% if answer.is_correct is not None %}{% if answer.is_correct %} Correct{% else %} Incorrect{% endif %}{% elif answer.manual_score is not None %} Band {{ answer.manual_score|floatformat:1 }}{% else %} Pending instructor review{% endif %}
{% empty %}
No answers were submitted for this test.
{% endfor %}
{% endif %} {% endblock %}