mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-09 23:41:10 +00:00
15 lines
383 B
Twig
15 lines
383 B
Twig
<table class="table table-hover">
|
|
<tr>
|
|
<td>{{ 'in'|_ }}</td>
|
|
<td>{{ incomes.getTotal|formatAmount }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ 'out'|_ }}</td>
|
|
<td>{{ (expenses.getTotal)|formatAmount }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ 'difference'|_ }}</td>
|
|
<td>{{ (incomes.getTotal + expenses.getTotal)|formatAmount }}</td>
|
|
</tr>
|
|
</table>
|