{% extends 'layout/site.html.twig' %} {% block title %}Waiting for players - {{ session.game.name }}{% endblock %} {% block body %}

Waiting for more players to join

{{ session.game.name }}

Share the invite code with your friends. Feel free to chat below while you wait — no need to reload the page.

Players joined: {{ session.players|length }} / {{ session.game.numberOfPlayers }}
    {% for sessionPlayer in session.players %}
  • {{ sessionPlayer.user.username }}
  • {% endfor %}
{% if session.players|length >= session.game.numberOfPlayers %}
{% endif %} Back to Dashboard
Lobby chat
{% for message in messages %}
{{ message.player.user.username }} {{ message.createdAt|date('H:i') }}
{{ message.content }}
{% else %}

No messages yet. Say hi!

{% endfor %}
{% if player %}
{% else %}

Only players in this session can chat.

{% endif %}
{% endblock %}