{% extends 'physics/exams.html' %} {% block content %} {% load thumbnail %}

Exam: {{ exam.name }}

This exam has {{question_number}} questions.
Exam active: [When checked the exam will be available to take in the test system]
Publish results: [When checked the exam results will be available on this site]
This exam will be available to take here (when active). {% autoescape off %}
    {% for question in questions.all %}
  1. {{ question.stem }}
    1. {{ question.a }}: {{ question.a_answer }}
    2. {{ question.b }}: {{ question.b_answer }}
    3. {{ question.c }}: {{ question.c_answer }}
    4. {{ question.d }}: {{ question.d_answer }}
    5. {{ question.e }}: {{ question.e_answer }}
    Category: {{ question.category }}, View Edit
  2. {% endfor %}
{% endautoescape %}
{% endblock %}