firefly-iii/resources/views/reports/partials/income-vs-expenses.twig

22 lines
700 B
Twig
Raw Normal View History

2015-06-20 00:29:25 -05:00
<div class="box">
<div class="box-header with-border">
2015-06-21 03:50:45 -05:00
<h3 class="box-title">{{ 'incomeVsExpenses'|_ }}</h3>
</div>
<div class="box-body table-responsive no-padding">
<table class="table table-hover">
<tr>
<td>{{ 'in'|_ }}</td>
<td>{{ incomes.getTotal|formatAmount }}</td>
</tr>
<tr>
<td>{{ 'out'|_ }}</td>
<td>{{ (expenses.getTotal)|formatAmount }}</td>
2015-06-21 03:50:45 -05:00
</tr>
<tr>
<td>{{ 'difference'|_ }}</td>
<td>{{ (incomes.getTotal + expenses.getTotal)|formatAmount }}</td>
2015-06-21 03:50:45 -05:00
</tr>
</table>
2015-05-16 06:53:08 -05:00
</div>
2015-05-20 12:56:14 -05:00
</div>