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

Loan Management

Manage and track all loans in the system

Clear
{% for application in applications %} {% empty %} {% endfor %}
Client Product Amount Duration Status Date Actions
{{ application.borrower.first_name|slice:":1" }}{{ application.borrower.last_name|slice:":1" }}
{{ application.borrower.get_full_name }}
{{ application.borrower.phone_number }}
{{ application.loan_product.name }}
{{ application.repayment_method|title }}
KES {{ application.requested_amount|floatformat:2 }}
Total: KES {{ application.total_amount|floatformat:2 }}
{{ application.requested_duration }} Days
{{ application.get_status_display }} {% if application.auto_approved %} (Auto) {% endif %} {{ application.submitted_at|date:"M d, Y" }} View Details
No loans found. Add a new loan
{% endblock %}