{% extends 'base.html' %} {% load static %} {% block title %}Portfolio Snapshot Dashboard{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| Manager | Branch | Clients | Active Loans | Health Score | Growth Rate | Actions |
|---|---|---|---|---|---|---|
|
{{ item.manager.first_name|first }}{{ item.manager.last_name|first }}
{{ item.manager.get_full_name }}{{ item.manager.get_role_display }} |
{{ item.manager.branch.name|default:"No Branch" }} | {{ item.snapshot.total_clients }} | {{ item.snapshot.active_loans }} | {% if item.health_score >= 80 %} {{ item.health_score|floatformat:1 }}% {% elif item.health_score >= 70 %} {{ item.health_score|floatformat:1 }}% {% elif item.health_score >= 50 %} {{ item.health_score|floatformat:1 }}% {% else %} {{ item.health_score|floatformat:1 }}% {% endif %} | {% if item.growth_rate > 0 %} +{{ item.growth_rate|floatformat:1 }}% {% elif item.growth_rate < 0 %} {{ item.growth_rate|floatformat:1 }}% {% else %} 0.0% {% endif %} | View Details |
Portfolio snapshots will appear here once generated.
{% if user.role == 'admin' %} Generate First Snapshot {% endif %}{{ alert.message|truncatechars:80 }}
{{ alert.created_at|timesince }} agoNo recent alerts