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

Exam: {{ exam }}

Candidate number:

Questions

{% autoescape off %}
    {% for question in questions.all %}
  1. {{ question.stem }}
    1. {{ question.a }}:
    2. {{ question.b }}:
    3. {{ question.c }}:
    4. {{ question.d }}:
    5. {{ question.e }}:
  2. {% endfor %}
{% endautoescape %}
{% endblock %}