summaryrefslogtreecommitdiff
path: root/project/templates/registration/manage_payments.html
blob: a1c457182c0bd6058c127d39610fa62510f94e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{% extends "base.html" %}

{% block title %}Manage Payments - {% endblock %}

{% block content %}
<h1>Manage Payments</h1>

<form action="" method="post">

  <fieldset>
    <legend>Payment Details</legend>
    <table class="scipycon-default">
      <tr>
        <th>Full Name</th>
        <th>Reg. Confirmed</th>
        <th>Accommodation. Confirmed</th>
        <th>Date of Payment</th>
        <th>Payment Mode</th>
        <th>Details</th>
      </tr>
      {% for registrant in registrants %}
      <tr class="{% cycle odd,even %}">
        <th>
          <label
          {% if registrant.registrant.payment_set.get.type or registrant.registrant.payment_set.get.details %}
          {% if not registrant.registrant.payment_set.get.confirmed %}
          class="alert"
          {% endif %}
          {% endif %}
          for="id_{{ registrant.registrant.id }}_label">
            {{ registrant.registrant.get_full_name }}
          </label>
        </th>
        <td>
          {{ field.errors }}
          <input id="user_id_{{ registrant.registrant.id }}"
          name="registrant_id_{{ registrant.registrant.id }}"
          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>
      {% endfor %}
      <tr>
        <th>
        <button class="button left" type="submit">Submit Payment Status</button>
        </th>
      </tr>
    </table>
  </fieldset>

</form>
{% endblock content %}