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 %}
-
{{ question.stem }}
-
{{ question.a }}: {{ question.a_answer }}
-
{{ question.b }}: {{ question.b_answer }}
-
{{ question.c }}: {{ question.c_answer }}
-
{{ question.d }}: {{ question.d_answer }}
-
{{ question.e }}: {{ question.e_answer }}
Category: {{ question.category }}, View Edit
{% endfor %}
{% endautoescape %}
{% endblock %}