{% extends "master/base.html" %} {% block content %}

{{ quiz.title }}

{{ quiz.description }}

{% csrf_token %} {% for item in question_items %}
{{ forloop.counter }}. {{ item.question.question }}
{% for option in item.options %}
{% endfor %}
{% endfor %}
{% endblock %}