Fix currency symbol
authorDave Page <dpage@pgadmin.org>
Fri, 3 May 2024 09:29:11 +0000 (10:29 +0100)
committerDave Page <dpage@pgadmin.org>
Fri, 3 May 2024 09:29:11 +0000 (10:29 +0100)
template/invoices/genericbankpayment.html [new file with mode: 0644]

diff --git a/template/invoices/genericbankpayment.html b/template/invoices/genericbankpayment.html
new file mode 100644 (file)
index 0000000..257dda8
--- /dev/null
@@ -0,0 +1,40 @@
+{%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 information</th>
+        <td>{{bankinfo|linebreaksbr}}</td>
+    </tr>
+    <tr>
+        <th>Payment reference</th>
+        <td><strong>{{invoice.payment_reference}}</strong></td>
+    </tr>
+    <tr>
+        <th>Amount</th>
+        <td>ยฃ{{invoice.total_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, <b>do not</b> use the invoice number,
+    use the specified payment reference!
+</p>
+
+<p>
+    <b>Note</b> that bank transfers take a few days to process, so if your
+    payment is needed rapidly in order to confirm something, this is <strong>not</strong> a good
+    choice of payment method.
+</p>
+
+{%if returnurl%}<a href="{{returnurl}}" class="btn btn-outline-dark">Return to payment options</a>{%endif%}
+
+{%endblock%}
\ No newline at end of file