{% load static %}

Quiz: {{ quiz.name }}

{% if question %}
{% csrf_token %}
{{ question.prompt }} {% if question.freetextanswer %}
{% else %} {% for choice in question.multiplechoiceanswer.choices %}
{% endfor %} {% endif %}
{% else %} Sorry, that question doesn't exist in this quiz. {% endif %}
{% if next_question %}
→ Next question
{% endif %}