Display payments in the UI

master
Drew DeVault 9 years ago
parent 8f3c8017f1
commit 35cd5cdb9e
  1. 4
      templates/admin.html

@ -104,6 +104,7 @@
<th>Comment</th> <th>Comment</th>
<th>Amount</th> <th>Amount</th>
<th>Type</th> <th>Type</th>
<th>Payments</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -118,6 +119,9 @@
{{ "Once" if str(donation.type) == "DonationType.one_time" else "Monthly" }} {{ "Once" if str(donation.type) == "DonationType.one_time" else "Monthly" }}
{{ "(cancelled)" if not donation.active else "" }} {{ "(cancelled)" if not donation.active else "" }}
</td> </td>
<td>
{{donation.payments}}
</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>

Loading…
Cancel
Save