{% extends 'base.html' %} {% load humanize %} {% block title %}{{ title }} - Haven Grazuri Investment Limited{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ title }}

{{ total_count }} loans found

Back to All Loans {% if status_filter != 'rolled_over' %} 🔄 Rolled Over Loans {% endif %} + New Loan
1.
Total Loans
{{ total_count|intcomma }}
💵
Total Amount
KES {{ total_amount|floatformat:2|intcomma }}
🔍
Filter
{{ status_filter|title }}

Loan Details

Detailed information about {{ status_filter }} loans

{% if loans %}
{% for loan in loans %} {% endfor %}
Borrower Amount Status Due Date Created Actions
{% if loan.borrower.selfie %} {{ loan.borrower.get_full_name }} {% else %}
{{ loan.borrower.first_name|first }}{{ loan.borrower.last_name|first }}
{% endif %}
{{ loan.borrower.get_full_name }}
{{ loan.borrower.phone_number }}
KES {{ loan.principal_amount|floatformat:2|intcomma }}
Total: KES {{ loan.total_amount|floatformat:2|intcomma }}
{{ loan.get_status_display }} {{ loan.due_date|date:"M d, Y" }} {% if loan.status == 'active' and loan.due_date < today %} Overdue {% endif %} {{ loan.created_at|date:"M d, Y" }} View Details
{% if loans.has_other_pages %}
{% if loans.has_previous %} Previous {% endif %} {% if loans.has_next %} Next {% endif %}
{% endif %} {% else %}
🔍

No {{ status_filter }} loans found

There are currently no loans with the status "{{ status_filter }}".

{% endif %}
{% endblock %}