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

{{ 'options'|_ }}

    {% for hide in hideable %}
  • {% endfor %}
{% for account in accounts %}

{{ account.name }}

{% if not auditData[account.id].exists %}
No activity was recorded on account {{ account.name }} between {{ start }} and {{ end }}.
{% else %}

Account balance of {{ account.name }} at the end of {{ auditData[account.id].end }} was: {{ auditData[account.id].endBalance|formatAmount }}

{% include 'reports/partials/journals-audit.twig' with {'journals': auditData[account.id].journals,'account':account} %}

Account balance of {{ account.name }} at the end of {{ auditData[account.id].dayBefore }} was: {{ auditData[account.id].dayBeforeBalance|formatAmount }}

{% endif %}
{% endfor %} {% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}