{% extends "admin/base_site.html" %} {% load i18n admin_static admin_modify %} {% load url from future %} {% load admin_urls %} {% block extrastyle %}{{ block.super }} {% endblock %} {% block bodyclass %}{{ opts.app_label }} zip_upload_form{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %}

{% trans "Upload a ZIP archive with a set of pictures" %}

{% trans "Note: all pictures will be non-public by default, so you can edit its properties before publish they to the web." %}

{% if form.errors %}

{% trans "Please correct the error below." %}

{% endif %}
{% for field in form %}
{% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {{ field }} {% if field.help_text %}

{{ field.help_text|safe }}

{% endif %}
{% endfor %}
{% endblock %}