{% extends "lingo/manager_homepage.html" %} {% load i18n %} {% block breadcrumb %} {{ block.super }} {% trans "Export" %} {% endblock %} {% block content %} {% if job.status == 'failed' %}

{% trans "Error during export."%}

{% if job.exception %}
{{job.exception}}
{% endif %}
{% elif job.status == 'completed' %} {% trans "Download exported file" %} {% else %}

{% trans "Exporting, please wait." %}

{% endif %} {%if job.status != 'completed' and job.status != 'failed' %} {% endif %} {% endblock %}