mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 23:24:07 -06:00
70 lines
2.8 KiB
Twig
70 lines
2.8 KiB
Twig
<div class="box">
|
|
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ 'budgets'|_ }}</h3>
|
|
</div>
|
|
<div class="box-body table-responsive no-padding">
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ 'budget'|_ }}</th>
|
|
<th>{{ 'date'|_ }}</th>
|
|
<th>{{ 'budgeted'|_ }}</th>
|
|
<th>{{ 'spent'|_ }}</th>
|
|
<th>{{ 'left'|_ }}</th>
|
|
<th>{{ 'overspent'|_ }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for budgetLine in budgets.getBudgetLines %}
|
|
<tr>
|
|
<td>
|
|
{% if budgetLine.getBudget %}
|
|
<a href="{{ route('budgets.show',budgetLine.getBudget.id) }}">{{ budgetLine.getBudget.name }}</a>
|
|
{% else %}
|
|
<em>{{ 'noBudget'|_ }}</em>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if budgetLine.getRepetition %}
|
|
<a href="{{ route('budgets.show', [budgetLine.getBudget.id, budgetLine.getRepetition.id]) }}">{{ budgetLine.getRepetition.startdate.formatLocalized(monthAndDayFormat) }}</a>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if budgetLine.getRepetition %}
|
|
{{ budgetLine.getRepetition.amount|formatAmount }}
|
|
{% else %}
|
|
{{ 0|formatAmount }}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if budgetLine.getSpent != 0 %}
|
|
{{ budgetLine.getSpent|formatAmount }}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if budgetLine.getLeft != 0 %}
|
|
{{ budgetLine.getLeft|formatAmount }}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if budgetLine.getOverspent != 0 %}
|
|
<span class="text-danger">{{ budgetLine.getOverspent|formatAmountPlain }}</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="2"><em>{{ 'sum'|_ }}</em></td>
|
|
<td>{{ budgets.getBudgeted|formatAmount }}</td>
|
|
<td>{{ budgets.getSpent|formatAmount }}</td>
|
|
<td>{{ budgets.getLeft|formatAmount }}</td>
|
|
<td><span class="text-danger">{{ budgets.getOverspent|formatAmountPlain }}</span></td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|