firefly-iii/resources/views/list/piggy-bank-events.twig
2016-01-08 13:35:27 +01:00

35 lines
1.3 KiB
Twig

<table class="table table-hover">
<tr>
{% if showPiggyBank %}
<th>Piggy bank</th>
{% endif %}
<th>{{ trans('list.date') }}</th>
<th>{{ trans('list.amount') }}</th>
</tr>
{% for event in events %}
<tr>
{% if showPiggyBank %}
<td>
<a href="{{ route('piggy-banks.show',event.piggyBank.id) }}">{{ event.piggyBank.name }}</a>
</td>
{% endif %}
<td>
{% if event.transaction_journal_id %}
<a href="{{ route('transactions.show',event.transaction_journal_id) }}"
title="{{ event.transactionJournal.description }}">{{ event.date.formatLocalized(monthAndDayFormat) }}</a>
{% else %}
{{ event.date.formatLocalized(monthAndDayFormat) }}
{% endif %}
</td>
<td>
{% if event.amount < 0 %}
<span class="text-danger">{{ trans('firefly.removed_amount', {amount: (event.amount)|formatAmountPlain})|raw }}</span>
{% else %}
<span class="text-success">{{ trans('firefly.added_amount', {amount: (event.amount)|formatAmountPlain})|raw }}</span>
{% endif %}
</td>
</tr>
{% endfor %}
</table>