{% extends 'admin/layout.html.twig' %} {% block title %}Account Statement - {{ account.name }} - KitscoApp{% endblock %} {% block page_title %}Account Statement: {{ account.name }}{% endblock %} {% block content %}
Back to Account

Date Range

{{ account.name }}

{{ statement.from|date('d M Y') }} - {{ statement.to|date('d M Y') }}

Opening Balance

{{ account.currency.symbol }} {{ statement.openingBalance|money }}

{% for tx in statement.transactions %} {% else %} {% endfor %}
Date Reference Description Debit Credit Balance
{{ tx.date|date('d M Y') }} {{ tx.reference }} {{ tx.description }} {% if tx.debit %}{{ account.currency.symbol }} {{ tx.debit|money }}{% endif %} {% if tx.credit %}{{ account.currency.symbol }} {{ tx.credit|money }}{% endif %} {{ account.currency.symbol }} {{ tx.balance|money }}
No transactions found for this period
Closing Balance {{ account.currency.symbol }} {{ statement.closingBalance|money }}
{% endblock %}