Add payment mode and details to the management page details.
authorMadhusudan.C.S <madhusudancs@gmail.com>
Mon, 22 Nov 2010 17:55:01 +0530
changeset 290 3ea1acce0f78
parent 289 91aeddac8b80
child 291 182b03a1e6fe
Add payment mode and details to the management page details.
project/templates/registration/manage_payments.html
--- a/project/templates/registration/manage_payments.html	Sun Nov 21 12:18:24 2010 +0530
+++ b/project/templates/registration/manage_payments.html	Mon Nov 22 17:55:01 2010 +0530
@@ -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>