{% extends basetpl %} {% 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 %} {% if export.testmode %} {% trans "TEST MODE" %} {% endif %}

{% csrf_token %}

{% blocktrans %}Are you sure you want to revert the SEPA file export?{% endblocktrans %}

{% blocktrans %}The payments will be marked as unexported again.{% endblocktrans %}

{% blocktrans %}Only do this if you did not submit the file to your bank.{% endblocktrans %}

{% if export.event %} {% trans "Cancel" %} {% else %} {% trans "Cancel" %} {% endif %}
{% endblock %}