diff options
author | Madhusudan.C.S | 2010-11-29 21:15:51 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-11-29 21:15:51 +0530 |
commit | b3c3944b5416f4cf499a47453006a63270cbd5bf (patch) | |
tree | 7500cff6a7cd27d079593c4d0e0a83babc6a962e /project/templates | |
parent | dc91c9cb300c97623d118297c79c546b0ff0c189 (diff) | |
download | scipycon-b3c3944b5416f4cf499a47453006a63270cbd5bf.tar.gz scipycon-b3c3944b5416f4cf499a47453006a63270cbd5bf.tar.bz2 scipycon-b3c3944b5416f4cf499a47453006a63270cbd5bf.zip |
Add new fields to payment form for accommodation.
Diffstat (limited to 'project/templates')
-rw-r--r-- | project/templates/registration/manage_payments.html | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/project/templates/registration/manage_payments.html b/project/templates/registration/manage_payments.html index 4f0be3b..a1c4571 100644 --- a/project/templates/registration/manage_payments.html +++ b/project/templates/registration/manage_payments.html @@ -12,7 +12,9 @@ <table class="scipycon-default"> <tr> <th>Full Name</th> - <th>Confirmed</th> + <th>Reg. Confirmed</th> + <th>Accommodation. Confirmed</th> + <th>Date of Payment</th> <th>Payment Mode</th> <th>Details</th> </tr> @@ -33,12 +35,28 @@ {{ field.errors }} <input id="user_id_{{ registrant.registrant.id }}" name="registrant_id_{{ registrant.registrant.id }}" - type="checkbox" name="paid" + type="checkbox" name="registration_confirmed" {% if registrant.registrant.payment_set.get.confirmed %} checked=checked {% endif %} /><br /> </td> + <td> + {{ field.errors }} + <input id="user_id_{{ registrant.registrant.id }}" + name="registrant_id_{{ registrant.registrant.id }}" + type="checkbox" name="accommodation_confirmed" + {% if registrant.registrant.payment_set.get.acc_confirmed %} + checked=checked + {% endif %} + /><br /> + </td> + <td> + {{ field.errors }} + <input id="user_id_{{ registrant.registrant.id }}" + name="registrant_id_{{ registrant.registrant.id }}" + type="text" name="date_of_payment"/><br /> + </td> <td>{{ registrant.registrant.payment_set.get.type }}</td> <td>{{ registrant.registrant.payment_set.get.details }}</td> </tr> |