From bc2187e280f23ad8fa5f1bb923b4dfdf5a34f9ef Mon Sep 17 00:00:00 2001 From: Joel Addison Date: Sun, 5 Jan 2020 14:06:22 +1000 Subject: [PATCH] Update manual payment page Add title to page. Adjust spacing of sections. --- .../registrasion/manual_payment.html | 42 ++++++++++--------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/pinaxcon/templates/registrasion/manual_payment.html b/pinaxcon/templates/registrasion/manual_payment.html index 1b585f18..d0924aed 100644 --- a/pinaxcon/templates/registrasion/manual_payment.html +++ b/pinaxcon/templates/registrasion/manual_payment.html @@ -1,31 +1,35 @@ {% extends "registrasion/base.html" %} {% load bootstrap %} +{% block head_title %}Manual Payment{% endblock %} +{% block page_title %}Manual Payment{% endblock %} + {% block proposals_body %} +

Invoice {{ invoice.id }} - {{ invoice.get_status_display }}

-

Invoice {{ invoice.id }} - {{ invoice.get_status_display }}

+
+

Past payments

-

Past payments

+ {% include "registrasion/payment_list.html" with payments=invoice.paymentbase_set.all %} +
- {% include "registrasion/payment_list.html" with payments=invoice.paymentbase_set.all %} +
+

Apply manual payment

-

Apply manual payment

+

Enter a reference and the amount of the payment. A refund is a negative + payment.

-

Enter a reference and the amount of the payment. A refund is a negative - payment.

- -
- {% csrf_token %} - - - {{ form|bootstrap }} -
- - -
+
+ {% csrf_token %} + + {{ form|bootstrap }} +
+ +
+
{% endblock %}