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

{% blocktrans trimmed %} We detected the following payments. Please review them and click the 'Confirm' button below. {% endblocktrans %}

{% csrf_token %} {% for row in rows %} {% endfor %}
{% trans "Date" %} {% trans "Reference" %} {% trans "Amount" %} {% trans "Payer" %} {% trans "Order" %} {% trans "Status" %}
{% if row.ok %} {% endif %} {{ row.date }} {{ row.reference }} {{ row.amount }} {{ row.payer }} {% if row.order %} {{ row.order.code }} {% endif %} {{ row.message }}
{% endblock %}