{% extends "base.html" %} {% block title %} Administration {% endblock %} {% block titre %}Administration : jeux {% endblock %} {% block contenu %}
Ajouter un jeu
Liste des jeux {% for g in games %} {% endfor %}
IdNamePartieJoueursStatusActions
{{ g.id }}{{ g.name }}{{ g.partie }}{% for p in g.players %}{{ p.user }} {% endfor %} {% if g.start %} Started {% elif g.fixplayers %}Players set{% else %}Join{% endif %} Voir Del
{% endblock %}