{% extends 'datafreezer/base.html' %} {% load static %} {% block title %}Describe your data{% endblock title %} {% block custom_head %} {% endblock %} {% block content %} {% if formset.errors %}

Couldn't save your data dictionary.

Fix the errors on fields marked and try again.

{% endif %}
{% csrf_token %} {{ formset.media }}
{% for form in formset %} {% empty %} {% endfor %}
Columns
{% comment %} {% endcomment %}
{% for form in formset %}
{% include 'datafreezer/datadict_field_form.html' %}
{% endfor %}
{{ formset.management_form }}
{% endblock content %} {% block pre_main_content %}
{% comment %}
Save
{% endcomment %}
{% endblock pre_main_content %} {% block post_main_content %}
{% with extra_formset|first as form %}
{% include 'datafreezer/datadict_field_form.html' %}
{% endwith %}
{% endblock post_main_content %} {% block scripts %} {% endblock scripts %}