{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load money %} {% load static %} {% block title %}{% trans "SEPA export" %}{% endblock %} {% block content %}

{% blocktrans with date=export.datetime|date:"SHORT_DATETIME_FORMAT" %}SEPA export: {{ date }}{% endblocktrans %} {% trans "Download XML" %}

{% trans "Included orders" %}

{% blocktrans trimmed with currency=request.event.currency total=total %} Total amount: {{ total }} {{ currency }} {% endblocktrans %}
{% for seo in seorders %} {% empty %} {% endfor %}
{% trans "Order" %} {% trans "Payment" %} {% trans "Mandate date" %} {% trans "Associated invoices" %} {% trans "Payment amount" %}
{{ seo.order.code }} {{ seo.payment.full_id }} {% if seo.migrated %} {{ seo.order.datetime|date:"SHORT_DATETIME_FORMAT" }} {% else %} {{ seo.payment.created|date:"SHORT_DATETIME_FORMAT" }} {% endif %} {% for i in seo.order.invoices.all %} {{ i.number }}{% if forloop.revcounter0 > 0 %},{% endif %} {% endfor %} {{ seo.amount|money:request.event.currency }}
{% trans "No orders have been part of this export." %}
{% endblock %}