{% extends "exports/base.html" %} {% load base_tags %} {% load base_filters %} {% load i18n %} {% block title %}Export Status{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% if export.status == "failed" %}

{% trans "Export Failed!" %}

{{ datetime.now }}

{% trans "Please try again." %}

{% else %} {% if export.status == "completed" %}

{% trans "Export Completed!" %}

{{ datetime.now }}

{% trans "Download" %} {% trans "here" %}

{% else %}

{% trans "Processing Export!" %}

{{ datetime.now }}

{% trans "We're not done yet!" %}

{% trans "Please wait while we finish processing your export file." %}

{% endif %} {% endif %}
{% endblock %} {% block extra_body %} {{ block.super }} {% if export.status == "pending" %} {% endif %} {% endblock %}