{% extends "manage.html" %} {% block subtitle %}Questions in "{{ papers.quiz.description }}"{% endblock %} {% block script %} {% endblock %} {% block manage %}
{% csrf_token %}

Fixed Questions

{% for q in fixed_questions %}   {{ q.summary}}
{% endfor %}

Random Questions

{% for random_set in random_questions %}

{{ random_set.num_questions}} question(s) from {{ random_set.questions.all|length }} question(s)

{% for q in random_set.questions.all %}   {{ q.summary}}
{% endfor %} {% endfor %}
{% endblock %}