{% extends 'base.html' %} {% block content %}

{{ quiz.title }}

{{ quiz.description }}

{% csrf_token %} {% for q in questions %}

Question {{ forloop.counter }}: {{ q.question }}

{% for opt in q.random_options %} {% endfor %}
{% endfor %}
{% endblock %}