{% extends "admin/import_export/base.html" %} {% load i18n %} {% load static admin_urls %} {% comment %} Template for showing export results. * Display status and allow downloading file * If data contains errors show traceback {% endcomment %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs_last %} {% trans "Export" %} › {% trans "Export results" %} {% endblock %} {% block content %} {% block export_results %} {% if export_job.export_status == 'EXPORT_ERROR' %}

{% trans "There are some errors during data exporting:" %}

{{ export_job.error_message }} {% if debug %}
{{ export_job.traceback|linebreaks }}
{% endif %}
{% endif %} {% if export_job.export_status == 'EXPORTED' %}

{% trans "You can download exported data with following link" %}

{% trans "Download export data" %} {% endif %} {% endblock %} {% endblock %}