{% extends "base.html" %} {% block title %}{{ quiz_name }} – Q{{ question_num }}{% endblock %} {% block content %}

{{ quiz_name }}

Question {{ question_num }} of {{ total_questions }}

{{ question.question_text }}

{% if question.question_type == "multiple_answer" %}

Select all that apply.

{% endif %}
    {% for opt in question.options %}
  • {% endfor %}
{% endblock %}