{% extends basetpl %} {% load i18n %} {% load money %} {% load static %} {% block title %}{% trans "SEPA debit" %}{% endblock %} {% block content %}

{% trans "SEPA debit" %}

{% blocktrans trimmed %} {{ num_new }} SEPA debit orders have been placed and are not yet exported as Sepa XML. {% endblocktrans %}

{% if request.event.testmode %}
{% trans "In test mode, your exports will only contain test mode orders." %}
{% elif request.event %}
{% trans "If you want, you can now also create SEPA debit files for multiple events combined." %} {% trans "Go to organizer-level exports" %}
{% endif %} {% if num_new > 0 %}
{% csrf_token %}
{% endif %}

{% trans "Exported XML files" %}

{% for export in exports %} {% empty %} {% endfor %}
{% trans "Export date" %} {% trans "Number of orders" %} {% trans "Total amount" %}
{{ export.datetime|date:"SHORT_DATETIME_FORMAT" }} {% if export.testmode %} {% trans "TEST MODE" %} {% endif %} {{ export.cnt }} {% if export.currency %} {{ export.sum|default_if_none:0|money:export.currency }} {% else %} {{ export.sum|default_if_none:0|money:export.event.currency }} {% endif %} {% if export.event %} {% trans "Orders" %} {% trans "Download XML" %} {% else %} {% trans "Orders" %} {% trans "Download XML" %} {% endif %}
{% trans "No exports have been created yet." %}
{% endblock %}