{% extends 'admin_pages/base_admin.html' %} {% block title %}Cash Collection{% endblock %} {% block content %}

Cash Collection

Logo
{{ company_profile.title }}
{{ company_profile.address }}
{{ company_profile.phone_number }}
Today's Collection: {{ today_total|floatformat:2 }}
Total: {{ total_amount|floatformat:2 }}
{% for p in payments %} {% empty %} {% endfor %}
ID Date Consumer Received By Received In Amount Paid Receipt No
{{ p.id }} {{ p.created_at|date:"Y-m-d" }} {{ p.consumer }} {{ p.received_by }} {{ p.get_received_in_display }} {{ p.amount_paid|floatformat:2 }} {{ p.receipt_no }}
No payments found.
{% endblock %}