{% extends "base.html" %} {% block title %}Admin Dashboard โ€” Python 108{% endblock %} {% block content %}
{{ stats.students }}
Students
{{ stats.teachers }}
Teachers
{{ stats.classes }}
Classes
{{ stats.completions }}
Completions

Top Students (site-wide)

{% if top_students %}
{% for s in top_students %} {% endfor %}
RankStudentPrograms doneProgress
{% if loop.index==1 %}๐Ÿฅ‡{% elif loop.index==2 %}๐Ÿฅˆ{% elif loop.index==3 %}๐Ÿฅ‰ {% else %}{{ loop.index }}{% endif %} {{ s['username'] }} {{ s['prog_done'] }}/108
{{ s['pct'] }}%
{% else %}
No student activity yet
{% endif %}

All Classes

{% if classes %}
{% for c in classes %} {% endfor %}
ClassTeacherStudentsStatus
{{ c['name'] }} {{ c['teacher_name'] or 'โ€”' }} {{ c['student_count'] }} {% if c['is_active'] %} Active {% else %} Inactive {% endif %} Manage
{% else %}

No classes yet. Create one โ†’

{% endif %}
{% endblock %}