{% extends "admin/base.html" %} {% block content %}

Welcome, {{ current_user.username }}

Here's what's happening on your language learning platform today.

Last login: {% if current_user.last_login and current_user.last_login is not string %} {{ current_user.last_login|timeago }} {% else %} Not available {% endif %}
Current time: {{ now().strftime('%B %d, %Y %H:%M') }}
Total Students
{{ stats.total_students }}
Active users in the system
Total Teachers
{{ stats.total_teachers }}
Instructors managing content
Total Topics
{{ stats.total_topics }}
Learning materials available
Pending Approvals
{{ stats.pending_approvals }}
Students awaiting approval

Add New Teacher

Create a new teacher account with content creation permissions.

Add New Student

Register a new student and assign them to a teacher.

Manage Topics

View and manage all learning topics in the system.

Recent Activities

Last 24 hours
{% if recent_activities %} {% for activity in recent_activities %}
{% set icon_class = 'text-gray-400' %} {% set bg_class = 'bg-gray-100' %} {% if 'TEACHER_ADDED' in activity.action %} {% set icon_class = 'text-cyan-500' %} {% set bg_class = 'bg-cyan-50' %} {% set icon = 'user-plus' %} {% elif 'STUDENT_ADDED' in activity.action %} {% set icon_class = 'text-indigo-500' %} {% set bg_class = 'bg-indigo-50' %} {% set icon = 'user-graduate' %} {% elif 'USER_APPROVED' in activity.action %} {% set icon_class = 'text-green-500' %} {% set bg_class = 'bg-green-50' %} {% set icon = 'check-circle' %} {% elif 'USER_REJECTED' in activity.action %} {% set icon_class = 'text-red-500' %} {% set bg_class = 'bg-red-50' %} {% set icon = 'times-circle' %} {% elif 'TOPIC_' in activity.action %} {% set icon_class = 'text-amber-500' %} {% set bg_class = 'bg-amber-50' %} {% set icon = 'book' %} {% elif 'LOGIN' in activity.action %} {% set icon_class = 'text-blue-500' %} {% set bg_class = 'bg-blue-50' %} {% set icon = 'sign-in-alt' %} {% elif 'DELETED' in activity.action %} {% set icon_class = 'text-red-500' %} {% set bg_class = 'bg-red-50' %} {% set icon = 'trash' %} {% else %} {% set icon = 'circle' %} {% endif %}

{{ activity.details }}

{{ activity.created_at|timeago }} {{ activity.user.username }} {% if activity.target_user %} {{ activity.target_user.username }} {% endif %}
{% endfor %} {% else %}

No Recent Activities

Activity logs will appear here as users interact with the system.

{% endif %}
{% if recent_activities %} {% endif %}

System Status

Usage Statistics

Student Engagement 68%
Topic Completion 45%
Teacher Activity 82%

Quick Stats

Avg. Completion Time
3.2 days
Avg. Student Score
78%
New Users (7d)
+{{ stats.total_students // 10 }}
New Topics (7d)
+{{ stats.total_topics // 8 }}

System Health

Database
Operational
API Services
Operational
Storage
Operational
Add Short Course Add Learning Course Manage Courses Manage Team
{% endblock %}