{% extends 'base.html' %} {% load humanize %} {% block title %}Interest Schedule - {{ loan.loan_number }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ loan.loan_number }} - {{ loan.borrower.get_full_name }}
| Payment # | Due Date | Principal | Interest | Total Payment | Balance |
|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ payment.due_date|date:"M d, Y" }} | KSh {{ payment.principal|floatformat:2|intcomma }} | KSh {{ payment.interest|floatformat:2|intcomma }} | KSh {{ payment.total|floatformat:2|intcomma }} | KSh {{ payment.balance|floatformat:2|intcomma }} |
No payment schedule available for this loan.