{% load static %} {{ book.name }} - Transactions
{% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %}

{{ book.name }}

{{ book.description }}

Total Balance: {{ total_balance|floatformat:2 }} ৳

➕ Add Transaction 📄 Generate PDF Report ⬅ Back to Dashboard
{% if page_obj %} {% for t in transactions_with_running %} {% endfor %}
Date Type Amount Running Balance Note Actions
{{ t.created_at|date:"M d, Y" }} {{ t.type|capfirst }} {% if t.type == 'deposit' %}+{% else %}-{% endif %}{{ t.amount|floatformat:2 }} {{ t.running_balance|floatformat:2 }} ৳ {{ t.note|default:"-" }}
{% else %}

No transactions yet. Start by adding one!

{% endif %}