{% extends basetpl %} {% load i18n %} {% load money %} {% load static %} {% block title %}{% trans "SEPA export" %}{% endblock %} {% block content %}
{% 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 %} | {% if export.currency %} {{ seo.amount|money:export.currency }} {% else %} {{ seo.amount|money:export.event.currency }} {% endif %} |
{% trans "No orders have been part of this export." %} |