diff --git a/shop/templates/bank_transfer.html b/shop/templates/bank_transfer.html index 4df2683a..0da1cd77 100644 --- a/shop/templates/bank_transfer.html +++ b/shop/templates/bank_transfer.html @@ -4,12 +4,15 @@ {% block shop_content %}

Pay by Bank Transfer

+

To pay order #{{ orderid }} you need to make a bank transfer +of the full amount of {{ total|currency }} to the following account:

IBAN: {{ iban }}
Swift/BIC: {{ swiftbic }}

-

Note: Please allow for up to a week before we register your bank transfer, especially if you are outside of the SEPA region.

+

Note: Please allow for up to a week before we register your bank +transfer, especially if you are outside of the SEPA region.

{% endblock %} diff --git a/shop/views.py b/shop/views.py index 77a327a0..d64b32ea 100644 --- a/shop/views.py +++ b/shop/views.py @@ -383,6 +383,8 @@ class BankTransferView(LoginRequiredMixin, EnsureUserOwnsOrderMixin, EnsureUnpai context = super(BankTransferView, self).get_context_data(**kwargs) context['iban'] = settings.BANKACCOUNT_IBAN context['swiftbic'] = settings.BANKACCOUNT_SWIFTBIC + context['orderid'] = self.get_object().pk + context['total'] = self.get_object().total return context #################################################################################