mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-17 09:51:40 +00:00
Some expanded things.
This commit is contained in:
@@ -18,7 +18,13 @@
|
||||
<!-- make rows -->
|
||||
{% for balanceLine in balance.getBalanceLines %}
|
||||
<tr>
|
||||
<td>{{ balanceLine.getBudget.name }}</td>
|
||||
<td>
|
||||
{% if balanceLine.getBudget %}
|
||||
<a href="{{ route('budgets.show',balanceLine.getBudget.id) }}">{{ balanceLine.getBudget.name }}</a>
|
||||
{% else %}
|
||||
{{ 'noBudget'|_ }}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>{{ balanceLine.getBudgetAmount|formatAmount }}</td>
|
||||
{% for balanceEntry in balanceLine.getBalanceEntries %}
|
||||
<td class="text-danger">
|
||||
|
Reference in New Issue
Block a user