{% extends './layout/default' %} {% block breadcrumbs %} {{ Breadcrumbs.render(Route.getCurrentRoute.getName, account, start, end) }} {% endblock %} {% block content %}

{% if balances.balance %} {{ trans('firefly.chart_account_in_period', { balance: formatAmountBySymbol(balances.balance, currency.symbol, currency.decimal_places, true), name: account.name|escape, start: start.isoFormat(monthAndDayFormat), end: end.isoFormat(monthAndDayFormat) })|raw }} {% elseif balances.pc_balance %} {{ trans('firefly.chart_account_in_period', { balance: formatAmountBySymbol(balances.pc_balance, primaryCurrency.symbol, primaryCurrency.decimal_places, true), name: account.name|escape, start: start.isoFormat(monthAndDayFormat), end: end.isoFormat(monthAndDayFormat) })|raw }} {% endif %}

{% if attachments.count() > 0 %}

{{ 'attachments'|_ }}

{% include 'list.attachments' %}
{% endif %}
{% if not showAll and isLiability %}

pay-off by date

Content
{% endif %} {% if not showAll and not isLiability %}

{{ 'expenses_by_category'|_ }}

{{ 'expenses_by_budget'|_ }}

{{ 'income_by_category'|_ }}

{% endif %}
{% if(location) %}

{{ 'location'|_ }}

{% endif %} {% if account.notes.count() == 1 %}

{{ 'notes'|_ }}

{{ account.notes.first().text|markdown }}
{% endif %}

{{ 'transactions'|_ }} {% if balances.balance %} ({{ formatAmountBySymbol(balances.balance, currency.symbol, currency.decimal_places, true)|raw }}) {% elseif balances.pc_balance %} ({{ formatAmountBySymbol(balances.pc_balance, primaryCurrency.symbol, primaryCurrency.decimal_places, true)|raw }}) {% endif %}

{% if account.accountType.type == 'Asset account' %} {% set showReconcile = true %} {% else %} {% set showReconcile = false %} {% endif %} {% include 'list.groups' %}

{% if periods|length > 0 %} {{ 'show_all_no_filter'|_ }} {% else %} {{ 'show_the_current_period_and_overview'|_ }} {% endif %}

{% if periods|length > 0 %}
{% include 'list.periods' %}
{% endif %}
{% endblock %} {% block scripts %} {% if location %} {% endif %} {# required for groups.twig #} {% endblock %} {% block styles %} {% if location %} {% endif %} {% endblock %}