{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %} {% set _attempt_url = quiz.url ~ '/attempts/' ~ attempt.uid %}
← Back to the quiz {% if quiz_error %} {% endif %} {% if attempt.status == 'expired' %}
This attempt ran out of time and was closed.
{% elif attempt.status == 'completed' %}
This attempt is finished. See the result.
{% endif %}

{{ render_title(quiz.title) }}

{{ attempt.answered_count }} / {{ attempt.question_count }} answered {{ format_number(attempt.score_points) }} / {{ attempt.max_points }} points {% if attempt.expires_at %} {{ format_duration(attempt.remaining_seconds) }} {% endif %}
{% for question in attempt.questions %} {% set _question = question %}{% set _mode = "player" %}{% include "_quiz_question.html" %} {% endfor %}
Results
{% endblock %}