diff --git a/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/email/order_pending.txt b/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/email/order_pending.txt index 38738c546..8b87e917c 100644 --- a/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/email/order_pending.txt +++ b/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/email/order_pending.txt @@ -1,5 +1,6 @@ -{% load i18n %}{% blocktrans with bank=settings.bank_details code=order.full_code %} +{% load i18n %}{% load l10n %}{% blocktrans with bank=settings.bank_details code=order.full_code total=order.total|localize currency=event.currency %} Please transfer the full amount to the following bank account. Reference: {{ code }} +Amount: {{ total }} {{ currency }} {{ bank }}{% endblocktrans %} \ No newline at end of file diff --git a/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html b/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html index a8fef7870..242773511 100644 --- a/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html +++ b/src/pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html @@ -1,4 +1,5 @@ {% load i18n %} +{% load l10n %}

{% blocktrans trimmed %} Please transfer the full amount to the following bank account: @@ -6,5 +7,6 @@

{{ settings.bank_details|linebreaksbr }}
+ {% trans "Amount:" %} {{ order.total|localize }} {{ request.event.currency }}
{% trans "Reference code (important):" %} {{ order.full_code }}
\ No newline at end of file