{% extends 'base.html.twig' %} {% block title %}Game Admin Dashboard{% endblock %} {% block body %}

Game Admin Dashboard

All Players ({{ players|length }})

{% for player in players %} {% else %} {% endfor %}
ID Username Email Roles Verified
{{ player.id }} {{ player.username }} {{ player.email }} {{ player.roles|join(', ') }} {{ player.isVerified ? 'Yes' : 'No' }}
No players found.

All Sessions ({{ sessions|length }})

{% for session in sessions %} {% else %} {% endfor %}
ID Game Status Players Joined Created At Actions
{{ session.id }} {{ session.game.name }} {{ session.status.value }}
    {% for p in session.players %}
  • {{ p.user.username }} (Screen: {{ p.screen ?? 'N/A' }})
  • {% else %}
  • No players
  • {% endfor %}
({{ session.players|length }} / {{ session.game.numberOfPlayers }})
{{ session.created|date('Y-m-d H:i') }} View Game Logs
No sessions found.
{% endblock %}