{% extends "pretixplugins/banktransfer/import_base.html" %} {% load i18n %} {% load bootstrap3 %} {% block inner %}

{% trans "Upload a new file" %}

{% blocktrans trimmed %} This page allows you to upload bank statement files to process incoming payments. {% endblocktrans %}

{% blocktrans trimmed %} Currently, this feature supports .csv files and files in the MT940 format. {% endblocktrans %}

{% if job_running %}
{% trans "An import is currently being processed, please try again in a few minutes." %}
{% else %}
{% csrf_token %}
{% endif %}
{% if transactions_unhandled|length > 0 or request.GET.search %}

{% trans "Unresolved transactions" %}

{% if not request.GET.search %}
{% csrf_token %}
{% endif %}

{% if transactions_unhandled|length > 0 %} {% include "pretixcontrol/pagination.html" %} {% include "pretixplugins/banktransfer/transaction_list.html" with list=transactions_unhandled %} {% include "pretixcontrol/pagination.html" %} {% else %}
{% trans "Your search matched no transactions." %}
{% endif %}
{% endif %} {% endblock %}