mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
22 lines
700 B
Twig
22 lines
700 B
Twig
<div class="box">
|
|
<div class="box-header with-border">
|
|
<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>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ 'difference'|_ }}</td>
|
|
<td>{{ (incomes.getTotal + expenses.getTotal)|formatAmount }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|