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

Restore Loan

Are you sure you want to restore this loan? It will be moved back to the active loans list.

Loan Number
{{ loan.loan_number }}
Client
{{ loan.borrower.get_full_name }}
Principal Amount
KES {{ loan.principal_amount|floatformat:2 }}
Total Amount
KES {{ loan.total_amount|floatformat:2 }}
Status
{{ loan.get_status_display }}
Deleted On
{{ loan.deleted_at|date:"F d, Y H:i" }}
{% if loan.deleted_by %}
Deleted By
{{ loan.deleted_by.get_full_name }}
{% endif %}
Cancel
{% csrf_token %}
{% endblock %}