{% extends basetpl %} {% load i18n %} {% load bootstrap3 %} {% load static %} {% block inner %} {% if no_more_payments %}
{% blocktrans trimmed with date=request.event.settings.payment_term_last|date:"SHORT_DATE_FORMAT" %} In the payment settings of your event, you set the {{ date }} as the last date of any payments. Therefore, you won't be able to mark any order as paid here. {% endblocktrans %}
{% else %}

{% 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 %} {% if currencies|length > 1 %}
{% endif %}
{% endif %}
{% endif %} {% if transactions_unhandled|length > 0 or filter_form.is_valid %}

{% trans "Unresolved transactions" %}

{% if request.event %}

{% blocktrans trimmed %} On this page, you can import banking data on a per-event level. You also only see unmatched transactions imported directly for this event. {% endblocktrans %} {% trans "Go to organizer-level import" %}

{% endif %}
{% trans "Amount from" %} {{ filter_form.amount_min }} {% trans "up to" %} {{ filter_form.amount_max }}
{% trans "Date from" %} {{ filter_form.date_min }} {% trans "up to" %} {{ filter_form.date_max }}
{{ filter_form.search_text }} {% trans "Clear" %}
{% if not filter_form.is_valid %}
{% 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 %}