{% extends 'base.html' %} {% load humanize %} {% block title %}Deleted Loans - Haven Grazuri Investment Limited{% endblock %} {% block content %}
View and manage soft-deleted loans. These loans have been removed from the main list but can be restored if needed.
| Loan Details | Client Information | Amount | Deletion Info | Actions |
|---|---|---|---|---|
|
{{ loan.loan_number }} - {{ loan.application.loan_product.get_product_type_display }}
Duration: {{ loan.duration_days }} days
📅
Disbursed: {{ loan.disbursement_date|date:"Y-m-d" }}
Deleted
|
{{ loan.borrower.get_full_name }}
{{ loan.borrower.phone_number }}
{{ loan.borrower.email }}
|
KES {{ loan.principal_amount|floatformat:2 }}
Interest: KES {{ loan.interest_amount|floatformat:2 }}
Total: KES {{ loan.total_amount|floatformat:2 }}
|
🗑️
{{ loan.deleted_at|date:"Y-m-d H:i" }}
{% if loan.deleted_by %}
By: {{ loan.deleted_by.get_full_name }}
{% endif %}
|
{% if search_query %} No deleted loans match your search criteria. {% else %} There are no deleted loans at the moment. {% endif %}