mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2024-11-30 09:33:03 +00:00
31 lines
749 B
HTML
31 lines
749 B
HTML
{% comment %}
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% if jeux_list.paginator %}
|
|
{% include "pagination.html" with list=jeux_list %}
|
|
{% endif %}
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Nom</th>
|
|
<th>Proprietaire</th>
|
|
<th>Durée</th>
|
|
<th>Joueurs min</th>
|
|
<th>Joueurs max</th>
|
|
<th>Comment</th>
|
|
</tr>
|
|
</thead>
|
|
{% for jeu in jeux_list %}
|
|
<tr>
|
|
<td>{{ jeu.nom }}</td>
|
|
<td>{{ jeu.proprietaire }}</td>
|
|
<td>{{ jeu.duree }}</td>
|
|
<td>{{ jeu.nombre_joueurs_min }}</td>
|
|
<td>{{ jeu.nombre_joueurs_max }}</td>
|
|
<td>{{ jeu.comment }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|