{% extends "atlas/exams.html" %} {% load crispy_forms_tags %} {% load static %} {% block content %}

Update Cases for Case: {{ object.title }}

This form allows you to update the cases associated with this collection. You can add, remove, or reorder cases as needed. This functionality is also available on the collection overview page (which is likely easier to use).
{% csrf_token %} {% crispy form form.helper %} {{ case_formset.management_form }}
{% for form in case_formset %}
{{ form.non_field_errors }} {{ form.errors }} {{ form|crispy }} {% if form.can_delete %}
{{ form.DELETE }}
{% endif %}
{% endfor %} {% comment %} {% endcomment %} {% endblock %}