{% load i18n static %}
{% csrf_token %} {% if file_errors %}
{% trans 'Please correct the errors below' %}
    {% for error in file_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% if form.fields|length %}
{% for field in form %}
{{ field.label_tag }} {{ field }} {% if field.help_text %}

{{ field.help_text|safe }}

{% endif %} {{ field.errors }}
{% endfor %}
{% endif %}

{% trans 'Select multiple files with the file dialog or by dragging and dropping them onto the dashed region' %}