Display payments in the UI

This commit is contained in:
Drew DeVault 2016-07-04 16:30:27 -04:00
parent 8f3c8017f1
commit 35cd5cdb9e
1 changed files with 4 additions and 0 deletions

View File

@ -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>