{% 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 %} {% if question.question_type == "multiple_answer" %} {% else %} {% endif %} {{ opt.id }} {{ opt.text }} {% endfor %} Submit {% endblock %}
{{ question.question_text }}
Select all that apply.