mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-18 18:44:16 +00:00
34 lines
1.3 KiB
Twig
34 lines
1.3 KiB
Twig
<table class="table table-hover sortable">
|
|
<thead>
|
|
<tr>
|
|
<th data-defaultsign="az">{{ 'name'|_ }}</th>
|
|
<th class="hidden-xs" style="text-align: right;" data-defaultsort="disabled">{{ 'spent'|_ }}</th>
|
|
<th class="hidden-xs" style="text-align: right;" data-defaultsort="disabled">{{ 'earned'|_ }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for name, amounts in result %}
|
|
<tr>
|
|
<td>{{ name }}</td>
|
|
<td style="text-align: right;" >
|
|
{% if amounts.spent|length == 0%}
|
|
{{ '0'|formatAmount }}
|
|
{% endif %}
|
|
{% for expense in amounts.spent %}
|
|
{{ formatAmountBySymbol(expense.sum, expense.currency.symbol, expense.currency.dp) }}<br />
|
|
{% endfor %}
|
|
</td>
|
|
<td style="text-align: right;" >
|
|
{% if amounts.earned|length == 0 %}
|
|
{{ '0'|formatAmount }}
|
|
{% endif %}
|
|
{% for income in amounts.earned %}
|
|
{{ formatAmountBySymbol(income.sum, income.currency.symbol, income.currency.dp) }}<br />
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
</table>
|