{% extends 'base.html' %} {% load humanize %} {% block title %}{{ title }} - HAVEN GRAZURI INVESTMENT LIMITED{% endblock %} {% block content %}

{{ title }}

Collection performance for {{ current_month|date:"F Y" }}

💵
Total Collected
KES {{ total_collected|floatformat:2|intcomma }}
Expected Collections
KES {{ total_expected|floatformat:2|intcomma }}
Collection Rate
{{ collection_rate|floatformat:1 }}%
1.
Total Payments
{{ total_count|intcomma }}

Collection Performance

0% {{ collection_rate|floatformat:1 }}% 100%

Recent Collections

All payments received in {{ current_month|date:"F Y" }}

{% if repayments %}
{% for repayment in repayments %} {% endfor %}
Borrower Loan Amount Payment Amount Payment Method Payment Date Status Actions
👤
{{ repayment.loan.borrower.get_full_name }}
{{ repayment.loan.borrower.phone_number }}
KES {{ repayment.loan.total_amount|floatformat:2|intcomma }} KES {{ repayment.amount|floatformat:2|intcomma }} {{ repayment.payment_method|default:"Cash" }} {{ repayment.payment_date|date:"M d, Y H:i" }} Completed View Loan
{% if repayments.has_other_pages %}
{% if repayments.has_previous %} Previous {% endif %} {% if repayments.has_next %} Next {% endif %}
{% endif %} {% else %}
💵

No collections this month

No payments have been recorded for {{ current_month|date:"F Y" }}.

{% endif %}
{% endblock %}