{% extends 'base.html' %} {% load humanize %} {% load static %} {% block title %}Interest Income Report{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Analysis of interest income from active loans
KES {{ report_data.summary.total_interest_income|default:0|floatformat:2|intcomma }}
{{ report_data.summary.total_loans|default:0 }}
{{ report_data.summary.average_interest_rate|default:0|floatformat:1 }}%
{{ report_data.summary.monthly_growth|default:0|floatformat:1 }}%
{{ report_data.income_details|length }} interest income record{{ report_data.income_details|length|pluralize }} found
{% endif %}| Loan # | đ¤Borrower | đĩPrincipal | Interest Rate | đĒInterest Earned | âšī¸Status |
|---|---|---|---|---|---|
| {{ income.loan_number }} |
{{ income.borrower_name }}
|
KES {{ income.principal_amount|floatformat:2|intcomma }} | {{ income.interest_rate|floatformat:1 }}% | KES {{ income.interest_earned|floatformat:2|intcomma }} | {% if income.status == 'active' %} {{ income.status|title }} {% elif income.status == 'paid' %} {{ income.status|title }} {% else %} {{ income.status|title }} {% endif %} |
No interest income matches the selected criteria. Try adjusting your filters or check back when loans start generating interest.