{% extends LOWBONO_DASHBOARD_TEMPLATE_BASE|default:"lowbono/dashboard/base.html" %} {% load static %} {% block title %}Home ยท Staff Dashboard{% endblock %} {% block content %}

Overview

{{ referrals_total }}
Total Referrals
{{ overdue_total }}
Overdue matters
{# One tile per registered profession, so the row is 2 + N wide rather than a fixed 4. #} {% for prof in profession_counts %}
{{ prof.count }}
{{ prof.verbose }}s
{% endfor %}

New Referrals

{% for w in new_windows %}
{{ w.label }} View
{{ w.count }}
Referrals
{% endfor %}
Trending Professionals (30 Days)
{% if trending_professionals %}
{% for p in trending_professionals %} {% endfor %}
{{ p.name }} {{ p.count }} referrals
{% else %}

No referrals in the last 30 days.

{% endif %}
Trending Practice Areas (30 Days)
{% if trending_areas %}
{% for a in trending_areas %} {% endfor %}
{{ a.name }} in {{ a.parent }} {{ a.count }} referrals
{% else %}

No referrals in the last 30 days.

{% endif %}

Professionals

Search and filter registered professionals

Referrals

Search and filter clients & referrals

Practice Areas

Coverage & demand per practice area

Referral Status

Referrals status across & stages

Referrals by Stage

{% for chart in stage_charts %}
{{ chart.title }}
{{ chart.labels|json_script:chart.labels_id }} {{ chart.data|json_script:chart.data_id }}
{% endfor %}
{% endblock %} {% block extra_js %} {% comment %} The chart library loads from the base; only this configuration is page-local. Requires chart.js >= 4. {% endcomment %} {% endblock %}