{% extends 'base.html' %} {% block content %}
Home Programs {{ course.program }} {{ course }} Quizzes Add Quiz
Quiz form for {{ course }}
{% csrf_token %}
{{ form.category }} {{ form.category.errors }}
{{ form.title }}
{{ form.pass_mark }} {{ form.pass_mark.errors }} Percentage required to pass exam.

{{ form.description }} {{ form.description.errors }} a description of the quiz
{{ form.random_order }} {{ form.random_order.errors }} Display the questions in a random order or as they are set?
{{ form.answers_at_end }} {{ form.answers_at_end.errors }} Correct answer is NOT shown after question. Answers displayed at the end.
{{ form.exam_paper }} {{ form.exam_paper.errors }} If yes, the result of each attempt by a user will be stored. Necessary for marking.
{{ form.single_attempt }} {{ form.single_attempt.errors }} If yes, only one attempt by a user will be permitted. Non users cannot sit this exam.
{{ form.draft }} {{ form.draft.errors }} If yes, the quiz is not displayed in the quiz list and can only be taken by users who can edit quizzes.
{% endblock %} {% block js %} {% endblock js %}