{% extends "admin/import_export/base.html" %} {% load i18n %} {% load static admin_urls %} {% comment %} Template to show status of export job. Similar to job's admin page. {% endcomment %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs_last %} {% trans "Export" %} › {% trans "Exporting ..." %} {% endblock %} {% block content %}

{{ export_job.export_status|title }}

{% if export_job.export_status not in export_job.export_finished_statuses %}

{% endif %} {% if export_job.export_status == export_job.ExportStatus.EXPORTED %}

{% for total, stat in export_job.result.totals.items %} {{ total.title }}:  {{ stat }}
{% endfor %}

{% endif %} {% if export_job.export_status == export_job.ExportStatus.EXPORT_ERROR %}

{{ export_job.error_message }}

{{ export_job.traceback | linebreaks }}
{% endif %}
{% endblock %}