{% extends "base.html" %} {% load richtext %} {% block title %}Practice - {{ course.title|exam_marks }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
← Back to course {% if error %}
{{ error }}
{% else %}

{{ course.title|exam_marks }}

{% if not answered %}
⏱ 1:30
{% endif %}
{{ question_number }}/{{ total_questions }}
{% if current_question %}
Question {{ question_number }} of {{ total_questions }}
{{ current_question.text|richtext }}
⏰ Time's up! Moving to next question…
{% csrf_token %}
{% for choice in choices %}
{% endfor %}
{% if not answered %} {% else %} {% if has_next %} {% elif all_completed %} See Results → {% endif %} {% endif %}
{% if answered %} {% endif %}
{% endif %} {% endif %}
{% endblock %}