{% extends basetpl %} {% load i18n %} {% load static %} {% block inner %}

{% trans "Import result" %}

{% if job.state == "running" or job.state == "pending" %}

{% trans "The result of your import is in progress. Please be patient while we process the data …" %}

{% else %} {% if job.state == "error" %}
{% trans "An internal error occurred during processing your data." %} {% trans "Some transactions might be missing, please try to re-import the file." %}
{% elif transactions_ignored == 0 and transactions_invalid == 0 and transactions_valid == 0 %}
{% trans "Your import did not contain any transactions that you did not import before." %}
{% endif %}
{{ transactions_valid }} {% trans "Orders marked as paid" %}
{{ transactions_invalid }} {% trans "Invalid payments" %}
{{ transactions_ignored }} {% trans "Ignored payments" %}
{% if transactions_ignored or transactions_invalid %} {% trans "Review invalid and ignored payments" %} » {% endif %} {% endif %} {% endblock %}