{% extends "base.html" %} {% block title %}Cash Book{% endblock %} {% block content %} {% if session.get('role') == 'admin' %}
| ID | Date | Reason | Amount | Type | Payment Method | Done By | Description | Balance | {% if session.get('role') == 'admin' %}Actions | {% endif %}
|---|---|---|---|---|---|---|---|---|---|
| #{{ t.id }} | {{ t.date }} | {{ t.reason }} | {{ "+" if t.type == 'credit' else "-" }} Rs. {{ "{:,.2f}".format(t.amount) }} | {{ "๐" if t.type == 'credit' else "๐" }} {{ t.type.capitalize() }} | {{ t.payment_method }} | {{ t.payment_done_by }} | {{ t.description or "โ" }} | Rs. {{ "{:,.2f}".format(t.running_balance) }} | {% if session.get('role') == 'admin' %}{% endif %} |
|
No transactions found |
|||||||||
No transactions found