{% extends 'admin/layout.html.twig' %} {% block title %}Account Statement - {{ account.name }} - KitscoApp{% endblock %} {% block page_title %}Account Statement: {{ account.name }}{% endblock %} {% block content %}
{{ statement.from|date('d M Y') }} - {{ statement.to|date('d M Y') }}
Opening Balance
{{ account.currency.symbol }} {{ statement.openingBalance|money }}
| 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 }} | ||||