Banktransfer: Display full price in transfer details

This commit is contained in:
Raphael Michel
2015-07-26 00:37:26 +02:00
parent 0978f5b942
commit 018fb29daf
2 changed files with 4 additions and 1 deletions

View File

@@ -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 %}

View File

@@ -1,4 +1,5 @@
{% load i18n %}
{% load l10n %}
<p>{% blocktrans trimmed %}
Please transfer the full amount to the following bank account:
@@ -6,5 +7,6 @@
<address>
{{ settings.bank_details|linebreaksbr }}<br />
{% trans "Amount:" %} {{ order.total|localize }} {{ request.event.currency }}<br />
<strong>{% trans "Reference code (important):" %} {{ order.full_code }}</strong>
</address>