{% extends 'base.html' %} {% load humanize %} {% load utils_filters %} {% block title %}{{ title }} - HAVEN GRAZURI INVESTMENT LIMITED{% endblock %} {% block content %}
{{ total_count }} active loans in portfolio
Detailed breakdown of all active loans in the portfolio
| Borrower | Principal Amount | Total Amount | Amount Paid | Outstanding | Due Date | Actions |
|---|---|---|---|---|---|---|
|
{% if loan.borrower.profile_image or loan.borrower.selfie %}
{{ loan.borrower.get_initials }}
{% endif %}
{{ loan.borrower.get_full_name }}
{{ loan.borrower.phone_number }}
|
KES {{ loan.principal_amount|floatformat:2|intcomma }} | KES {{ loan.total_amount|floatformat:2|intcomma }} | KES {{ loan.amount_paid|floatformat:2|intcomma }} | {% with outstanding=loan.total_amount|sub:loan.amount_paid %} KES {{ outstanding|floatformat:2|intcomma }} {% endwith %} | {{ loan.due_date|date:"M d, Y" }} {% if loan.due_date < today %} Overdue {% endif %} | View Details |
Showing {{ loans.start_index }} to {{ loans.end_index }} of {{ loans.paginator.count }} results