{% extends 'base.html' %} {% load humanize %} {% load utils_filters %} {% block title %}Rolled Over Loans - Haven Grazuri Investment Limited{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{{ total_count }} rolled over loans found
These loans have been rolled over and replaced with new active loans
These loans have been rolled over and are no longer active for collections. Each rolled over loan has been replaced with a new active loan that contains the updated terms, amount, and duration.
Historical record of loans that have been rolled over
| Original Loan Number | Borrower | Original Amount | Rollover Date | Rollover Fee | New Loan Number | Actions |
|---|---|---|---|---|---|---|
|
{{ loan.loan_number }}
{{ loan.application.loan_product.name }}
|
đ¤
{{ 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.updated_at|date:"M d, Y" }}
{{ loan.updated_at|date:"h:i A" }}
|
KES {{ rollover_fee_amount|floatformat:2|intcomma }}
({{ rollover_fee }}%)
|
{% for new_loan in loan.borrower.loans.all %}
{% if new_loan.original_loan == loan %}
{{ new_loan.loan_number }}
{% if new_loan.status == 'active' %}
â Active
{% elif new_loan.status == 'paid' %}
â Paid
{% else %}
{{ new_loan.get_status_display }}
{% endif %}
{% endif %}
{% empty %}
No new loan found
{% endfor %}
|
View Details |
Showing {{ loans.start_index }} to {{ loans.end_index }} of {{ loans.paginator.count }} results
There are currently no loans that have been rolled over.