{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta_description %}{{ meta_description }}{% endblock %} {% block content %}
Report centre

Daily, weekly, monthly, and yearly reports

Filter your period, print the page, or download a branded PDF that includes your business name, logo, and user details.

Download PDF
{% for field in form %}
{{ field }} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% if profile.logo %} {{ profile.business_name }} logo {% else %}
Logo
{% endif %}

{{ profile.business_name|default:'MoMoLedger Business' }}

{{ profile.owner_label }} · {{ request.user.username }} · {{ request.user.email|default:'Email not set' }}

Report window {{ start_date }} to {{ end_date }}
Transactions{{ total_count }}
Gross amount{{ total_amount }}
Service fees{{ total_fees }}
Closing cash{{ closing_physical }}
Opening e-cash{{ profile.opening_ecash }}
Opening physical cash{{ profile.opening_physical_cash }}
Closing e-cash{{ closing_ecash }}
Closing physical cash{{ closing_physical }}
{% for row in summary %} {% endfor %}
Type Count Amount Fees
{{ row.label }} {{ row.count }} {{ row.amount }} {{ row.fees }}
{% for transaction in entries %} {% empty %} {% endfor %}
Date Client Type Amount Fee Balances after
{{ transaction.created_at|date:"M d, Y H:i" }} {{ transaction.client_name }} {{ transaction.get_transaction_type_display }} {{ transaction.amount }} {{ transaction.service_charge }} E {{ transaction.ecash_after }} · P {{ transaction.physical_after }}

No entries in this period

Try another range or add a new transaction to populate the report.

{% endblock %}