--- /dev/null
+{%extends "navbase.html"%}
+{%block title%}Pay with bank transfer{%endblock%}
+{%block content%}
+<h1>Pay with bank transfer</h1>
+<p>
+To pay your invoice using bank transfer, please make a payment
+according to the following:
+</p>
+
+<table border="1" cellspacing="0" cellpadding="3">
+<tr>
+ <th>Account holder</th>
+ <td>PostgreSQL Down Under</td>
+</tr>
+<tr>
+ <th>Bank name</th>
+ <td>Bendigo Bank</td>
+</tr>
+<tr>
+ <th>BSB</th>
+ <td>633000</td>
+</tr>
+<tr>
+ <th>ABN</th>
+ <td>72 998 050 656</td>
+</tr>
+<tr>
+ <th>Account</th>
+ <td>163639784</td>
+</tr>
+<tr>
+ <th>Payment text</th>
+ <td>{{title}}</td>
+</tr>
+<tr>
+ <th>Amount</th>
+ <td>€{{amount}}</td>
+</tr>
+</table>
+
+<p>
+<b>Note</b> that it is <b><i>very</i></b> important that you provide the
+correct text on the transfer, or we may not be able to match your payment
+to the correct invoice. In particular, the beginning of the title including
+the invoice number <i>must</i> be present.
+</p>
+
+<p>
+<b>Note</b> that bank transfers take a few days to process, so if your
+payment is nedeed repidly in order to confirm something, this is not a good
+choice of payment method.
+</p>
+
+{%if returnurl%}<a href="{{returnurl}}" class="btn btn-outline-dark">Return to payment options</a>{%endif%}
+
+{%endblock%}
--- /dev/null
+{%extends "navbase.html"%}
+{%block navsection%}Financial{%endblock%}
+{%block navblock%}
+<li><a href="/invoices/">Invoices</a></li>
+{%if user.is_superuser%}
+<li><a href="/invoiceadmin/">Invoice admin</a></li>
+{%endif%}
+{%endblock%}