← Back to the quiz
{{ render_title(quiz.title) }}
{{ format_number(attempt.score_percent) }}%
{{ format_number(attempt.score_points) }} / {{ attempt.max_points }} points
{% if attempt.pass_percent %}
{% if attempt.passed %}Passed{% else %}Not passed{% endif %} - pass mark {{ attempt.pass_percent }}%
{% endif %}
{{ attempt.answered_count }} of {{ attempt.question_count }} questions answered
Status: {{ attempt.status }}
{% if attempt.completed_at %}{{ dt_ago(attempt.completed_at) }}{% endif %}
{% if fallback_count %}
{{ fallback_count }} answer{% if fallback_count != 1 %}s were{% else %} was{% endif %}
scored by the deterministic fallback because automatic review was unavailable.
{% endif %}
{% if review %}
Review
{% for question in review %}
{% set _question = question %}{% include "_quiz_answer_review.html" %}
{% endfor %}
{% else %}
The author of this quiz turned per-answer review off.
{% endif %}
{% endblock %}