{% extends 'base.html' %} {% load humanize %} {% block title %}{{ title }} - Haven Grazuri Investment Limited{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{{ total_count }} loans found
Detailed information about {{ status_filter }} loans
| Borrower | Amount | Status | Due Date | Created | Actions |
|---|---|---|---|---|---|
|
{% if loan.borrower.selfie %}
{{ 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 |
Showing {{ loans.start_index }} to {{ loans.end_index }} of {{ loans.paginator.count }} results
There are currently no loans with the status "{{ status_filter }}".