summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhusudan.C.S2010-11-22 17:55:01 +0530
committerMadhusudan.C.S2010-11-22 17:55:01 +0530
commit2985c8bb0b7d2b9b7fc986a0f98ae342c0162b13 (patch)
treec9ac92f7a34ed6a139ca2daa99a7aca8138e16f0
parent3963d80c0d152815b5f506b4bf210ccf58bec8a5 (diff)
downloadscipycon-2985c8bb0b7d2b9b7fc986a0f98ae342c0162b13.tar.gz
scipycon-2985c8bb0b7d2b9b7fc986a0f98ae342c0162b13.tar.bz2
scipycon-2985c8bb0b7d2b9b7fc986a0f98ae342c0162b13.zip
Add payment mode and details to the management page details.
--HG-- extra : rebase_source : c77f2a4035583ab6c21e019addfb5fa61b0f3364
-rw-r--r--project/templates/registration/manage_payments.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/project/templates/registration/manage_payments.html b/project/templates/registration/manage_payments.html
index 472b53b..4f0be3b 100644
--- a/project/templates/registration/manage_payments.html
+++ b/project/templates/registration/manage_payments.html
@@ -10,6 +10,12 @@
<fieldset>
<legend>Payment Details</legend>
<table class="scipycon-default">
+ <tr>
+ <th>Full Name</th>
+ <th>Confirmed</th>
+ <th>Payment Mode</th>
+ <th>Details</th>
+ </tr>
{% for registrant in registrants %}
<tr class="{% cycle odd,even %}">
<th>
@@ -33,6 +39,8 @@
{% endif %}
/><br />
</td>
+ <td>{{ registrant.registrant.payment_set.get.type }}</td>
+ <td>{{ registrant.registrant.payment_set.get.details }}</td>
</tr>
{% endfor %}
<tr>