bornhack-website/shop/templates/bank_transfer.html

34 lines
1,020 B
HTML

{% extends 'shop_base.html' %}
{% load bootstrap3 %}
{% load shop_tags %}
{% block shop_content %}
<h2>Pay by Bank Transfer</h2>
<p>To pay order #{{ orderid }} you need to make a bank transfer
of the full amount of <b>{{ total|currency }}</b> using the following information:</p>
<ul class="lead">
<li><strong>Swift/BIC</strong>: {{ swiftbic }} (Danish reg. no. {{ regno }})</li>
<li><strong>IBAN</strong>: {{ iban }} (Danish account no. {{ accountno }})</li>
<li><strong>Reference*</strong>: bornhack #{{ orderid }}</li>
</ul>
<p class="lead">
<strong>
Remember:
</strong>
If you transfer from outside of Denmark you <strong>MUST</strong> make sure that
all transfers fees are <strong>paid by you</strong>.
</p>
<p>Also note: Please allow for up to a week before we register your bank
transfer, especially if you are outside of the SEPA region.</p>
<p>
<strong>*</strong> This reference is a message to the payee (BornHack) and
enables us to register your payment.
</p>
{% endblock %}