diff --git a/templates/game/admin/session.html.twig b/templates/game/admin/session.html.twig deleted file mode 100644 index b142302..0000000 --- a/templates/game/admin/session.html.twig +++ /dev/null @@ -1,49 +0,0 @@ -{% extends 'base.html.twig' %} - -{% block title %}View Session Logs - {{ session.id }}{% endblock %} - -{% block body %} -

Session: {{ session.game.name }} (#{{ session.id }})

-

Back to Dashboard

- -
- -
- - {% for playerLog in playersLogs %} -
-

Logs for {{ playerLog.username }}

-
{{ playerLog.logs ?: 'No logs found for this player.' }}
-
- {% endfor %} - - -{% endblock %}