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 %}