{% extends 'base.html' %} {% block content %}
Home Programs {{ course.program }} {{ course }} Quiz list MC Question add for {{ quiz_obj }}
Questions form for {{ quiz_obj }}
{{ quizQuestions }} question added
{% csrf_token %} {% if form.errors %}

Correct the error(s) below.

{% endif %}
{{ form.content }} {{ form.content.errors }} Enter the question text that you want displayed.
{{ form.figure }} {{ form.figure.errors }} Add an image for the question if it's necessary.
{{ form.explanation }} {{ form.explanation.errors }} Explanation to be shown after the question has been answered.
{{ form.choice_order }} {{ form.choice_order.errors }} The order in which multichoice choice options are displayed to the user.
Choices
{{ formset.management_form }} {% for fs in formset %}
{{ fs.correct }} Correct
{{ fs.choice }}
{{ fs.DELETE }} Delete
{% endfor %}
{% endblock %}