{% extends 'game/admin/base.html.twig' %} {% block title %}Session #{{ session.id }} logs — Admin{% endblock %} {% block admin_body %}
← Sessions

{{ session.game.name }} — Session #{{ session.id }}

{{ session.status.value }} · {{ session.players|length }} player(s) · Created {{ session.created|date('Y-m-d H:i') }}

{# Tab buttons #}
{% for playerLog in playersLogs %} {% endfor %}
{# Tab content #}
{% if lobbyMessages is empty %}

No lobby chat messages for this session.

{% else %}
{% for message in lobbyMessages %}
{{ message.player.user.username }} {{ message.createdAt|date('Y-m-d H:i') }}
{{ message.content }}
{% endfor %}
{% endif %}
{% for playerLog in playersLogs %}
{{ playerLog.logs ?: 'No logs found for this player.' }}
{% endfor %} {% endblock %}