← Back to the quiz
{% if quiz_error %}
{{ quiz_error }}
{% endif %}
{% if attempt.status == 'expired' %}
This attempt ran out of time and was closed.
{% elif attempt.status == 'completed' %}
{% endif %}
{% for question in attempt.questions %}
{% set _question = question %}{% set _mode = "player" %}{% include "_quiz_question.html" %}
{% endfor %}
{% endblock %}