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

{{ 'expenses_by_category'|_ }}

{{ 'expenses_by_budget'|_ }}

{{ 'income_by_category'|_ }}

{{ 'transactions'|_ }}

{% include 'list.journals-tasker' with {sorting:true} %}

{{ 'show_all_no_filter'|_ }}

{% for entry in entries %} {% if entry[2] != 0 or entry[3] != 0 %}
{% if entry[2] != 0 %} {% endif %} {% if entry[3] != 0 %} {% endif %}
{{ 'spent'|_ }} {{ entry[2]|formatAmount }}
{{ 'earned'|_ }} {{ entry[3]|formatAmount }}
{% endif %} {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}