firefly-iii/resources/views/reports/partials/operations.twig

15 lines
355 B
Twig
Raw Normal View History

2016-10-26 12:37:19 -05:00
<table class="table table-hover">
<tr>
<td>{{ 'in'|_ }}</td>
2016-12-05 13:35:13 -06:00
<td>{{ incomeSum|formatAmount }}</td>
2016-10-26 12:37:19 -05:00
</tr>
<tr>
<td>{{ 'out'|_ }}</td>
2016-12-05 13:35:13 -06:00
<td>{{ expensesSum|formatAmount }}</td>
2016-10-26 12:37:19 -05:00
</tr>
<tr>
<td>{{ 'difference'|_ }}</td>
2016-12-05 13:35:13 -06:00
<td>{{ (incomeSum + expensesSum)|formatAmount }}</td>
2016-10-26 12:37:19 -05:00
</tr>
</table>