mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Banktransfer: Display full price in transfer details
This commit is contained in:
@@ -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.
|
Please transfer the full amount to the following bank account.
|
||||||
|
|
||||||
Reference: {{ code }}
|
Reference: {{ code }}
|
||||||
|
Amount: {{ total }} {{ currency }}
|
||||||
{{ bank }}{% endblocktrans %}
|
{{ bank }}{% endblocktrans %}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
|
{% load l10n %}
|
||||||
|
|
||||||
<p>{% blocktrans trimmed %}
|
<p>{% blocktrans trimmed %}
|
||||||
Please transfer the full amount to the following bank account:
|
Please transfer the full amount to the following bank account:
|
||||||
@@ -6,5 +7,6 @@
|
|||||||
|
|
||||||
<address>
|
<address>
|
||||||
{{ settings.bank_details|linebreaksbr }}<br />
|
{{ settings.bank_details|linebreaksbr }}<br />
|
||||||
|
{% trans "Amount:" %} {{ order.total|localize }} {{ request.event.currency }}<br />
|
||||||
<strong>{% trans "Reference code (important):" %} {{ order.full_code }}</strong>
|
<strong>{% trans "Reference code (important):" %} {{ order.full_code }}</strong>
|
||||||
</address>
|
</address>
|
||||||
Reference in New Issue
Block a user