{% extends "atlas/exams.html" %} {% load crispy_forms_tags %} {% block css %} {% endblock %} {% block js %} {{form.media}} {% endblock %} {% block content %} {% if collection %}

Update Collection

{% else %}

Create Collection

Use this form to create a collection of cases {% endif %}
{% csrf_token %} {% crispy form form.helper %} {% comment %}

Cases:

Add cases here. These can only be added once created (they can also be added to cases on creation). Click and drag to change order.
    {% for form in case_formset %}
  1. {{form.non_field_errors}} {{form.errors}} {{ form }}
  2. {% endfor %}
{{ case_formset.management_form }}
{% endcomment %} {% comment %} {% endcomment %} {% endblock %}