{% load crispy_forms_tags %}
Choose the fields you want in the template, then download a CSV or Excel file to fill in offline.
{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.file_type|as_crispy_field }} {{ form.content_type_id }}

Included fields

Only fields that are editable and not auto-managed are shown here.

{% for field in form.visible_fields %} {% if field.name != "file_type" %} {% endif %} {% endfor %}