{% extends 'base.html' %} {% load static %} {% block title %}Credit Scores Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Monitor and manage borrower credit scores
Total Borrowers
{{ stats.total_borrowers }}
Low Risk
{{ stats.low_risk }}
Medium Risk
{{ stats.medium_risk }}
High Risk
{{ stats.high_risk }}
| Borrower | Credit Score | Risk Level | Credit Limit | Last Updated | Actions |
|---|---|---|---|---|---|
|
{% if score.user.profile_image %}
{{ score.user.first_name|first }}{{ score.user.last_name|first }}
{% endif %}
{{ score.user.get_full_name }}
{{ score.user.email }}
|
{{ score.total_score }}
/100
|
{{ score.get_risk_level_display }} | KES {{ score.credit_limit|floatformat:0 }} | {{ score.updated_at|date:"M d, Y H:i" }} | View |
| No credit scores found. | |||||