{% extends 'game/admin/base.html.twig' %} {% block title %}Admin Dashboard{% endblock %} {% block admin_body %}

Dashboard

{% set stats = [ { label: 'Total Users', value: totalUsers, color: '#3b82f6' }, { label: 'Players', value: totalPlayers, color: '#8b5cf6' }, { label: 'Admins', value: totalAdmins, color: '#f59e0b' }, { label: 'Games', value: totalGames, color: '#10b981' }, { label: 'Active Sessions', value: activeSessions, color: '#ef4444' }, { label: 'Total Sessions', value: totalSessions, color: '#64748b' }, ] %} {% for stat in stats %}
{{ stat.value }}
{{ stat.label }}
{% endfor %}
👤 Manage Users 🎮 Manage Games ▶ View Sessions ✉ Email Log
{% endblock %}