From 846cfbc44a3fe7f4d2c77392668da2ddc6f2a8b5 Mon Sep 17 00:00:00 2001 From: Frank Date: Mon, 10 Aug 2026 15:32:53 +0200 Subject: [PATCH] Remove dead admin/session.html.twig template Unreferenced by any controller - superseded by templates/game/admin/sessions/view.html.twig, which is what GameAdminController::viewSession() actually renders. Confirmed via grep across src/ and templates/, plus a clean lint:twig and phpunit run after removal. Co-Authored-By: Claude Sonnet 5 --- templates/game/admin/session.html.twig | 49 -------------------------- 1 file changed, 49 deletions(-) delete mode 100644 templates/game/admin/session.html.twig 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 %} -
  • - -
  • - {% endfor %} -
-
- - {% for playerLog in playersLogs %} -
-

Logs for {{ playerLog.username }}

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