34 lines
1,009 B
HTML
34 lines
1,009 B
HTML
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>{{strings.name[locale]}}</th>
|
||
|
<th>{{strings.type[locale]}}</th>
|
||
|
<th>{{strings.provider[locale]}}</th>
|
||
|
<th>{{strings.amount[locale]}} / {{strings.month[locale]}}</th>
|
||
|
<th>{{strings.amount[locale]}} / {{strings.year[locale]}}</th>
|
||
|
</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>
|
||
|
<td>{{expense.amount | amount(locale)}} €</td>
|
||
|
<td>{{expense.amount | year | amount(locale)}} €</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
<tfoot>
|
||
|
<tr>
|
||
|
<th colspan="3">{{strings.total[locale]}}</th>
|
||
|
<th>{{expenses | sum | amount(locale)}} €</th>
|
||
|
<th>{{expenses | sum | year | amount(locale)}} €</th>
|
||
|
</tr>
|
||
|
</tfoot>
|
||
|
</table>
|