{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta_description %}{{ meta_description }}{% endblock %} {% block content %}
Transaction log

All recorded transactions

Review entries, totals, and drill into the exact balance movements for each one.

Add transaction
Total entries{{ summary.total_count|default:0 }}
Total amount{{ summary.total_amount|default:0 }}
Total service fees{{ summary.total_fees|default:0 }}
{% if transactions %}
{% for transaction in transactions %} {% endfor %}
Client Type Amount Service charge Balances after Date
{{ transaction.client_name }} {{ transaction.get_transaction_type_display }} {{ transaction.amount }} {{ transaction.service_charge }} E {{ transaction.ecash_after }} ยท P {{ transaction.physical_after }} {{ transaction.created_at|date:"M d, Y H:i" }} Open
{% else %}

No entries yet

Your transaction log will appear here after the first saved record.

Create first transaction
{% endif %}
{% endblock %}