{% extends 'base.html.twig' %} {% block title %}Game Admin Dashboard{% endblock %} {% block body %}
| ID | Username | Roles | Verified | |
|---|---|---|---|---|
| {{ player.id }} | {{ player.username }} | {{ player.email }} | {{ player.roles|join(', ') }} | {{ player.isVerified ? 'Yes' : 'No' }} |
| No players found. | ||||
| ID | Game | Status | Players Joined | Created At | Actions |
|---|---|---|---|---|---|
| {{ session.id }} | {{ session.game.name }} | {{ session.status.value }} |
|
{{ session.created|date('Y-m-d H:i') }} | View Game |
| No sessions found. | |||||