{% extends "admin/import_export/base.html" %} {% load i18n %} {% load static admin_urls %} {% comment %} Template to show status of export job. {% 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 %}
{% include "admin/import_export_extensions/progress_bar.html" with job_url=export_job_url %}
{% endif %}
{% endblock %}