From 7e38fd922a8dd4742d09758cd1c94fb0302045d3 Mon Sep 17 00:00:00 2001 From: Parth Buch Date: Tue, 28 Aug 2012 17:03:37 +0530 Subject: Reboot for scipy 2012 --- .../templates/registration/manage_payments.html | 90 ++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 project/templates/registration/manage_payments.html (limited to 'project/templates/registration/manage_payments.html') diff --git a/project/templates/registration/manage_payments.html b/project/templates/registration/manage_payments.html new file mode 100644 index 0000000..30cd3bd --- /dev/null +++ b/project/templates/registration/manage_payments.html @@ -0,0 +1,90 @@ +{% extends "base.html" %} + +{% block title %}Manage Payments - {% endblock %} + +{% block addscripts %} + +{% endblock addscripts %} + +{% block content %} +

Manage Payments

+ +
+ +
+ Payment Details + + + + + + + + + + {% for registrant in registrants %} + + + + + + + + + {% endfor %} + + + +
Full NameReg. ConfirmedAccommodation. ConfirmedDate of PaymentPayment ModeDetails
+ + + {{ field.errors }} +
+
+ {{ field.errors }} +
+
+ {{ field.errors }} +
+
{{ registrant.registrant.payment_set.get.type }}{{ registrant.registrant.payment_set.get.details }}
+ +
+
+ +
+{% endblock content %} -- cgit