2021-06-13 00:17:25 +00:00
|
|
|
<div class="table-container">
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2024-03-30 02:09:13 +00:00
|
|
|
<th>{{strings.donations.name[locale]}}</th>
|
|
|
|
<th>{{strings.donations.type[locale]}}</th>
|
|
|
|
<th>{{strings.donations.provider[locale]}}</th>
|
|
|
|
<th>{{strings.donations.location[locale]}}</th>
|
|
|
|
<th>{{strings.donations.amount[locale]}} / {{strings.donations.month[locale]}}</th>
|
|
|
|
<th>{{strings.donations.amount[locale]}} / {{strings.donations.year[locale]}}</th>
|
2021-06-13 00:17:25 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for expense in expenses %}
|
|
|
|
<tr>
|
|
|
|
{% if expense.name[locale] %}
|
|
|
|
<td>{{expense.name[locale]}}</td>
|
|
|
|
{% else %}
|
|
|
|
<td>{{expense.name}}</td>
|
|
|
|
{% endif %}
|
|
|
|
<td>{{expense.type}}</td>
|
|
|
|
<td>{{expense.provider}}</td>
|
2023-07-14 21:56:25 +00:00
|
|
|
<td>{{expense.location}}</td>
|
2021-06-13 00:17:25 +00:00
|
|
|
<td>{{expense.amount | amount}} €</td>
|
|
|
|
<td>{{expense.amount | year | amount}} €</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
<tfoot>
|
|
|
|
<tr>
|
2024-03-30 02:09:13 +00:00
|
|
|
<th colspan="4">{{strings.donations.total[locale]}}</th>
|
2021-06-13 00:17:25 +00:00
|
|
|
<th>{{expenses | sum | amount}} €</th>
|
|
|
|
<th>{{expenses | sum | year | amount}} €</th>
|
|
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
</table>
|
|
|
|
</div>
|