{% extends "base.html" %} {% block title %}{{ quiz.title }} | Quiz{% endblock %} {% block nav_courses_student %}active{% endblock %} {% block content %} {% if quiz.description %}
{{ quiz.description }}
{% endif %}
{% csrf_token %} {% for question in questions %}

{{ forloop.counter }} {{ question.question_text }}

{% for choice in question.choices.all %} {% endfor %}
{% endfor %}
Back
{% endblock %} {% block extra_js %} {% endblock %}