{% extends "anatomy/base.html" %} {% load static %} {% block js %} {{ form.media }} {% endblock %} {% block content %} {% if object %} {% include 'anatomy/question_link_header.html' %} {% endif %}

Question Answers

Manage answer keys for auto-marking
Help

This page can be used to add and modify answers associated with a question. Answers here are used for auto-marking submitted responses; avoid removing entries unless you intend to re-score submissions.

{% csrf_token %}

Answers

{% for form in answer_formset %}
{{form.non_field_errors}} {{form.errors}}
{{ form.as_ul }}
{% endfor %}
{{ answer_formset.management_form }}
{{ answer_formset.empty_form.as_ul }}
{% endblock %} {% block css %} {% endblock %}