{% extends "base.html" %} {% load humanize %} {% block title %}Admin Dashboard{% endblock %} {% block nav_admin_dashboard %}active{% endblock %} {% block content %}
Applications Overview
{{ total_applications }}
Total Applications
{{ pending_count }}
{% if pending_count %}Action needed{% endif %}
Pending Review
{{ under_review_count }}
Under Review
{{ approved_count }}
Approved
{{ rejected_count }}
Rejected
Operations at a Glance
UGX {{ total_donations|floatformat:0|intcomma }}
Donations Received
{{ donations_count }}
Donors This Period
{{ ungraded_count }}
{% if ungraded_count %}Needs grading{% endif %}
Ungraded Submissions
{{ total_students }}
Active Students
Recent Applications
View All
{% for app in recent_applications %} {% empty %} {% endfor %}
Applicant Program Status Date
{{ app.full_name }}
{{ app.email }}
{{ app.program_applied.name }} {{ app.get_status_display }} {{ app.submitted_at|date:"d M Y" }} Review
No applications yet.
Students by Program
{% for row in program_breakdown %}
{{ row.program__name }} {{ row.count }}
{% empty %}

No enrolled students yet.

{% endfor %}
{% endblock %}