mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-22 20:16:22 +00:00
Also fix income/expenses sum
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
<table class="table table-hover">
|
||||
<tr>
|
||||
<td>{{ 'in'|_ }}</td>
|
||||
<td>{{ incomes.getTotal|formatAmount }}</td>
|
||||
<td>{{ incomeSum|formatAmount }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{ 'out'|_ }}</td>
|
||||
<td>{{ (expenses.getTotal)|formatAmount }}</td>
|
||||
<td>{{ expensesSum|formatAmount }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{ 'difference'|_ }}</td>
|
||||
<td>{{ (incomes.getTotal + expenses.getTotal)|formatAmount }}</td>
|
||||
<td>{{ (incomeSum + expensesSum)|formatAmount }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
Reference in New Issue
Block a user