{% extends 'base.html' %} {% load static %} {% block title %}Dashboard — Rapha-Bethel BNPS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Dashboard

School overview · {% now "l, d N Y" %}

Announcement
Students
{{ total_students }}
{{ total_classes }} class{{ total_classes|pluralize:"es" }}
Today's Attendance
{{ attendance_rate }}%
Pending Invoices
{{ pending_invoices }}
{% if overdue_invoices > 0 %}
{{ overdue_invoices }} overdue
{% else %}
None overdue
{% endif %}
Total Revenue
{{ total_revenue|floatformat:0 }}
XAF collected
7-Day Attendance Trend Full Report
🎂 Birthdays This Month
{% if upcoming_birthdays %} {% for s in upcoming_birthdays %}
{{ s.first_name|first }}{{ s.last_name|first }}
{{ s.first_name }} {{ s.last_name }}
{{ s.current_class|default:"No class" }}
{{ s.date_of_birth|date:"d M" }}
{% endfor %} {% else %}

No birthdays this month

{% endif %}
Recent Admissions All Students
{% for s in recent_students %}
{{ s.first_name|first }}{{ s.last_name|first }}
{{ s.first_name }} {{ s.last_name }}
{{ s.student_id }} · {{ s.admission_date|date:"d M Y" }}
{% if s.status == 'active' %} Active {% elif s.current_class %} {{ s.current_class }} {% else %} Unassigned {% endif %}
{% empty %}

No recent admissions

{% endfor %}
Announcements View all
{% for ann in recent_announcements %}
{{ ann.title }}
{{ ann.content|truncatewords:12 }}
{{ ann.publish_date|timesince }} ago {{ ann.get_priority_display }}
{% empty %}

No announcements

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}