{% extends 'base.html' %} {% load static %} {% block title %}Delete Statement{% endblock %} {% block content %}
{% csrf_token %}

Confirm Deletion

Are you sure you want to delete this bank statement?

Warning!

Bank: {{ statement.bank_account.bank_name }}
Account: {{ statement.bank_account.account_number }}
Period: {{ statement.statement_period_start|date:'d M Y' }} - {{ statement.statement_period_end|date:'d M Y' }}
Transactions: {{ statement.total_transactions }}

This action cannot be undone. All statement lines will be deleted.
{% endblock %}