add overrides for banktransfer and remove VAT FAQ link
authorStephen Frost <sfrost@snowman.net>
Wed, 10 Oct 2018 23:44:50 +0000 (19:44 -0400)
committerStephen Frost <sfrost@snowman.net>
Wed, 10 Oct 2018 23:44:50 +0000 (19:44 -0400)
template/invoices/banktransfer.html [new file with mode: 0644]
template/nav_financial.html [new file with mode: 0644]

diff --git a/template/invoices/banktransfer.html b/template/invoices/banktransfer.html
new file mode 100644 (file)
index 0000000..1b6aaa3
--- /dev/null
@@ -0,0 +1,56 @@
+{%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%}
diff --git a/template/nav_financial.html b/template/nav_financial.html
new file mode 100644 (file)
index 0000000..9af4cb5
--- /dev/null
@@ -0,0 +1,8 @@
+{%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%}