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

{{ 'expenses_by_category'|_ }}

{{ 'expenses_by_budget'|_ }}

{{ 'income_by_category'|_ }}

{% if periods.count > 0 %}

{{ 'showEverything'|_ }}

{% endif %}

{{ 'transactions'|_ }}

{% include 'list.journals-tasker' with {sorting:true, hideBills:true, hideBudgets: true, hideCategories: true} %} {% if periods.count > 0 %}

{{ 'show_all_no_filter'|_ }}

{% else %}

{{ 'show_the_current_period_and_overview'|_ }}

{% endif %}
{% if periods.count > 0 %}
{% for entry in periods %} {% if (entry[2] != 0 or entry[3] != 0) or (accountType == 'Asset account') %}
{% if entry[2] != 0 or (accountType == 'Asset account') %} {% endif %} {% if entry[3] != 0 or (accountType == 'Asset account') %} {% endif %}
{{ 'spent'|_ }} {{ entry[2]|formatAmount }}
{{ 'earned'|_ }} {{ entry[3]|formatAmount }}
{% endif %} {% endfor %}

{{ 'showEverything'|_ }}

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}