{% extends 'admin/layout.html.twig' %} {% block title %}{{ account.name }} - KitscoApp{% endblock %} {% block page_title %}{{ account.name }}{% endblock %} {% block content %}
Back to Accounts
Full Statement Edit Account
{{ account.type.label }} {% if account.isDefault %} Default {% endif %}

{{ account.name }}

{{ account.code }}

{% if account.bankName %}
Bank: {{ account.bankName }}
{% endif %} {% if account.accountNumber %}
Account Number: {{ account.accountNumber }}
{% endif %}
Opening Balance

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

Current Balance

{{ account.formattedBalance }}

Recent Transactions (This Month)

{% for tx in statement.transactions %} {% else %} {% endfor %}
Date Reference Description Debit Credit Balance
{{ tx.date|date('d M Y') }} {{ tx.reference }} {{ tx.description|u.truncate(40) }} {% 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 this month
{% endblock %}