2016-05-19 09:19:51 +00:00
|
|
|
{% extends 'shop_base.html' %}
|
2016-05-16 17:31:14 +00:00
|
|
|
{% load bootstrap3 %}
|
2016-06-01 08:27:41 +00:00
|
|
|
{% load shop_tags %}
|
2016-05-16 17:31:14 +00:00
|
|
|
|
2016-05-19 09:19:51 +00:00
|
|
|
{% block shop_content %}
|
2016-05-16 17:31:14 +00:00
|
|
|
|
|
|
|
<h2>Pay by Bank Transfer</h2>
|
2016-06-01 07:36:42 +00:00
|
|
|
<p>To pay order #{{ orderid }} you need to make a bank transfer
|
2016-06-01 08:40:13 +00:00
|
|
|
of the full amount of <b>{{ total|currency }}</b> using the following information:</p>
|
2016-05-16 17:31:14 +00:00
|
|
|
|
2016-06-01 08:40:13 +00:00
|
|
|
<ul class="lead">
|
2016-06-01 10:49:51 +00:00
|
|
|
<li><strong>IBAN</strong>: {{ iban }} (Danish reg. no. {{ regno }})</li>
|
|
|
|
<li><strong>Swift/BIC</strong>: {{ swiftbic }} (Danish account no. {{ accountno }}</li>
|
2016-06-01 08:40:13 +00:00
|
|
|
<li><strong>Reference*</strong>: bornhack #{{ orderid }}</li>
|
|
|
|
</ul>
|
2016-05-16 17:31:14 +00:00
|
|
|
|
2016-06-01 07:36:42 +00:00
|
|
|
<p>Note: Please allow for up to a week before we register your bank
|
|
|
|
transfer, especially if you are outside of the SEPA region.</p>
|
2016-05-16 17:31:14 +00:00
|
|
|
|
2016-06-01 08:40:13 +00:00
|
|
|
<p>
|
|
|
|
<strong>*</strong> This reference is a message to the payee (BornHack) and
|
|
|
|
enables us to register your payment.
|
|
|
|
</p>
|
|
|
|
|
2016-05-16 17:31:14 +00:00
|
|
|
{% endblock %}
|