{% extends 'game/admin/base.html.twig' %} {% block title %}Games — Admin{% endblock %} {% block admin_body %}

Games

{{ games|length }} total
{% for game in games %} {% set statusColor = { 'inDevelopment': '#fef3c7:#92400e', 'locked': '#fee2e2:#991b1b', 'open': '#dcfce7:#166534', } %} {% set colors = (statusColor[game.status.value] ?? '#f1f5f9:#475569')|split(':') %} {% else %} {% endfor %}
ID Name Players Status Sessions Actions
{{ game.id }} {{ game.name }} {{ game.numberOfPlayers }} {{ game.status.value }} {{ game.sessions|length }} Edit
No games found.
{% endblock %}