{% extends 'base.html' %} {% load static %} {% block title %}Credit Scores Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Credit Scores Management

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 }}

Actions

Filters

Credit Scores

{% for score in credit_scores %} {% empty %} {% endfor %}
Borrower Credit Score Risk Level Credit Limit Last Updated Actions
{% if score.user.profile_image %} {{ score.user.get_full_name }} {% else %}
{{ 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.
{% if credit_scores.has_other_pages %}
{% if credit_scores.has_previous %} Previous {% endif %} {% if credit_scores.has_next %} Next {% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}