equal
deleted
inserted
replaced
10 <fieldset> |
10 <fieldset> |
11 <legend>Payment Details</legend> |
11 <legend>Payment Details</legend> |
12 <table class="scipycon-default"> |
12 <table class="scipycon-default"> |
13 <tr> |
13 <tr> |
14 <th>Full Name</th> |
14 <th>Full Name</th> |
15 <th>Confirmed</th> |
15 <th>Reg. Confirmed</th> |
|
16 <th>Accommodation. Confirmed</th> |
|
17 <th>Date of Payment</th> |
16 <th>Payment Mode</th> |
18 <th>Payment Mode</th> |
17 <th>Details</th> |
19 <th>Details</th> |
18 </tr> |
20 </tr> |
19 {% for registrant in registrants %} |
21 {% for registrant in registrants %} |
20 <tr class="{% cycle odd,even %}"> |
22 <tr class="{% cycle odd,even %}"> |
31 </th> |
33 </th> |
32 <td> |
34 <td> |
33 {{ field.errors }} |
35 {{ field.errors }} |
34 <input id="user_id_{{ registrant.registrant.id }}" |
36 <input id="user_id_{{ registrant.registrant.id }}" |
35 name="registrant_id_{{ registrant.registrant.id }}" |
37 name="registrant_id_{{ registrant.registrant.id }}" |
36 type="checkbox" name="paid" |
38 type="checkbox" name="registration_confirmed" |
37 {% if registrant.registrant.payment_set.get.confirmed %} |
39 {% if registrant.registrant.payment_set.get.confirmed %} |
38 checked=checked |
40 checked=checked |
39 {% endif %} |
41 {% endif %} |
40 /><br /> |
42 /><br /> |
|
43 </td> |
|
44 <td> |
|
45 {{ field.errors }} |
|
46 <input id="user_id_{{ registrant.registrant.id }}" |
|
47 name="registrant_id_{{ registrant.registrant.id }}" |
|
48 type="checkbox" name="accommodation_confirmed" |
|
49 {% if registrant.registrant.payment_set.get.acc_confirmed %} |
|
50 checked=checked |
|
51 {% endif %} |
|
52 /><br /> |
|
53 </td> |
|
54 <td> |
|
55 {{ field.errors }} |
|
56 <input id="user_id_{{ registrant.registrant.id }}" |
|
57 name="registrant_id_{{ registrant.registrant.id }}" |
|
58 type="text" name="date_of_payment"/><br /> |
41 </td> |
59 </td> |
42 <td>{{ registrant.registrant.payment_set.get.type }}</td> |
60 <td>{{ registrant.registrant.payment_set.get.type }}</td> |
43 <td>{{ registrant.registrant.payment_set.get.details }}</td> |
61 <td>{{ registrant.registrant.payment_set.get.details }}</td> |
44 </tr> |
62 </tr> |
45 {% endfor %} |
63 {% endfor %} |