{% extends basetpl %} {% load i18n %} {% load money %} {% load static %} {% block title %}{% trans "Export bank transfer refunds" %}{% endblock %} {% block content %}

{% trans "Export bank transfer refunds" %}

{% blocktrans trimmed %} {{ num_new }} Bank transfer refunds have been placed and are not yet part of an export. {% 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 these exports for multiple events combined." %} {% trans "Go to organizer-level exports" %}
{% endif %} {% if num_new > 0 %}
{% csrf_token %}

{% blocktrans %} Beware that refunds will be marked as done once an export is created. Make sure to download the export and execute the refunds. {% endblocktrans %}

{% endif %}

{% trans "Exported 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|floatformat:2 }} {% endif %} {% if not export.downloaded %} {% trans "not downloaded" %} {% endif %} {% if export.event %} {% trans "Download CSV" %} {% if export.currency == "EUR" %} {% trans "SEPA XML" %} {% endif %} {% else %} {% trans "Download CSV" %} {% if export.currency == "EUR" %} {% trans "SEPA XML" %} {% endif %} {% endif %}
{% trans "No exports have been created yet." %}
{% endblock %}