14 lines
366 B
HTML
14 lines
366 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block "content" %}
|
|
<h1>Liste des jeux</h1>
|
|
|
|
<p>Il y a {{ paginator.count }} jeu{{ paginator.count|pluralize:"x" }} en salle jeux :</p>
|
|
{% include "partials/pagination.html" %}
|
|
|
|
{% for game in game_list %}
|
|
{% include "./partials/game_item.html" %}
|
|
{% endfor %}
|
|
|
|
{% include "partials/pagination.html" %}
|
|
{% endblock %}
|