{% extends 'base.html' %} {% load static %} {% block title %}Bank Statements{% endblock %} {% block content %}
{% for item in statement_list %}

{{ item.statement.bank_account.bank_name }}

{{ item.statement.bank_account.account_number }}
{{ item.statement.statement_period_start|date:'d M Y' }} - {{ item.statement.statement_period_end|date:'d M Y' }}
Opening: RM {{ item.statement.opening_balance|floatformat:2 }}
Closing: RM {{ item.statement.closing_balance|floatformat:2 }}
{{ item.statement.total_transactions }} transactions
{{ item.progress.percentage|floatformat:0 }}%
{{ item.progress.matched }}/{{ item.progress.total }} matched
{% empty %}

No statements found

Upload your first bank statement to get started

{% endfor %}
{% endblock %}