{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if errors %}

{% trans 'There were errors while importing the data. The process was aborted. Nothing was written to the database.' %}

{% for error in errors %}

{{ error.path|join:'.' }}: {{ error.message }}

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