Display payments in the UI

static-cp-fix
Drew DeVault 9 years ago
parent 8f3c8017f1
commit 35cd5cdb9e
  1. 4
      templates/admin.html

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

Loading…
Cancel
Save