{% extends 'academy/admin_base.html' %} {% block title %}Admin Dashboard{% endblock %} {% block extra_css %} {% endblock %} {% block admin_content %}

Academy Overview

Admin Dashboard

Welcome back, {{ request.user.get_full_name|default:request.user.username }}

{{ today|date:"l, d F Y" }}
Total Students

{{ total_students }}

Confirmed Payments

{{ confirmed_payments }}

Pending Payments

{{ pending_payments }}

📋 Recent Registrations
{% for student in recent_students %} {% empty %} {% endfor %}
Name Course Registered Payment Action
{{ student.full_name }} {{ student.get_course_display }} {{ student.registered_at|date:"d M Y" }} {{ student.payment_confirmed|yesno:"Paid,Pending" }} View
No recent registrations.
View All Students →
📊 Test Completion Overview
{% for stat in test_stats %}
{{ stat.label }} {{ stat.completed }} / {{ stat.total }}
{{ stat.percentage }}% Completed
{% endfor %}
Manage Students Assignments Portfolio
{% endblock %}