| {{ trans('list.date') }} |
{{ journal.date.formatLocalized(monthAndDayFormat) }} |
| {{ trans('list.type') }} |
{{ journal.transactiontype.type|_ }} |
| {{ trans('list.completed') }} |
{% if journal.completed %}
{{ 'yes'|_ }}
{% else %}
{{ 'no'|_ }}
{% endif %}
|
{% for budget in journal.budgets %}
| {{ 'budget'|_ }} |
{{ budget.name }} |
{% endfor %}
{% for category in journal.categories %}
| {{ 'category'|_ }} |
{{ category.name }} |
{% endfor %}
{% if journal.tags|length > 0 %}
| {{ 'tags'|_ }} |
{% for tag in journal.tags %}
{% endfor %}
|
{% endif %}
{% if journal.attachments|length > 0 %}
{% for att in journal.attachments %}
|
|
{{ att.filename }}
({{ att.size|filesize }})
|
{% endfor %}
{% endif %}
{% if journal.piggyBankEvents|length > 0 %}
{% include 'list/piggy-bank-events' with {'events': journal.piggyBankEvents, 'showPiggyBank':true} %}
{% endif %}