{% extends "./layout/default.twig" %} {% block content %} {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, journal) }}
| {{ trans('list.date') }} | {{ journal.date.formatLocalized(monthAndDayFormat) }} |
| {{ trans('list.type') }} | {{ journal.transactiontype.type|_ }} |
| {{ trans('list.completed') }} | {% if journal.completed %} {{ 'yes'|_ }} {% else %} {{ 'no'|_ }} {% endif %} |
| {{ 'budget'|_ }} | {{ budget.name }} |
| {{ 'category'|_ }} | {{ category.name }} |
| {{ 'tags'|_ }} |
{% for tag in journal.tags %}
{% if tag.tagMode == 'nothing' %} {% endif %} {% if tag.tagMode == 'balancingAct' %} {% endif %} {% if tag.tagMode == 'advancePayment' %} {% endif %} {{tag.tag}}{% endfor %} |
| {{ 'amount'|_ }} | {{ t|formatTransaction }} |
| {{ 'newBalance'|_ }} | {{ t.before|formatAmount }} → {{ t.after|formatAmount }} |
| Description | {{ t.description }} |