{% if showPiggyBank %}
{{ event.piggyBank.name }}
|
{% endif %}
{% if event.transaction_journal_id %}
{{ event.date.formatLocalized(monthAndDayFormat) }}
{% else %}
{{ event.date.formatLocalized(monthAndDayFormat) }}
{% endif %}
|
{% if event.amount < 0 %}
{{ trans('firefly.removed_amount', {amount: (event.amount)|formatAmountPlain})|raw }}
{% else %}
{{ trans('firefly.added_amount', {amount: (event.amount)|formatAmountPlain})|raw }}
{% endif %}
|
{% endfor %}