{% extends 'base.html' %} {% load humanize %} {% block title %}Delete Transaction - 3ncount2026{% endblock %} {% block page_title %}Delete Transaction{% endblock %} {% block content %}

Confirm Deletion

Warning!

Are you sure you want to delete this transaction? This action cannot be undone.

Reference: {{ transaction.reference_no }}
Date: {{ transaction.date|date:"d/m/Y" }}
Type: {% if transaction.transaction_type == 'INCOME' %} Income {% else %} Expense {% endif %}
Description: {{ transaction.description }}
Amount: RM {{ transaction.amount|floatformat:2|intcomma }}
{% endblock %}