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

{{ title }}

{{ total_count }} applications found

📄
Total Applications
{{ total_count|intcomma }}
💵
Total Requested
KES {{ total_amount|floatformat:2|intcomma }}
🔍
Status
{{ status_filter|title }}

Application Details

Detailed information about {{ status_filter }} applications

{% if applications %}
{% for application in applications %} {% endfor %}
Applicant Requested Amount Status Submitted Product Actions
{% if application.borrower.selfie %} {{ application.borrower.get_full_name }} {% else %}
{{ application.borrower.first_name|first }}{{ application.borrower.last_name|first }}
{% endif %}
{{ application.borrower.get_full_name }}
{{ application.borrower.phone_number }}
KES {{ application.requested_amount|floatformat:2|intcomma }}
{{ application.loan_product.name }}
{{ application.get_status_display }} {{ application.submitted_at|date:"M d, Y H:i" }} {{ application.loan_product.name }} View Details
{% if applications.has_other_pages %}
{% if applications.has_previous %} Previous {% endif %} {% if applications.has_next %} Next {% endif %}
{% endif %} {% else %}
🔍

No {{ status_filter }} applications found

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

{% endif %}
{% endblock %}