gestiojeux/inventory/templates/inventory/game_list.html
2021-01-05 22:10:21 +01:00

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&nbsp;:</p>
{% include "partials/pagination.html" %}
{% for game in game_list %}
{% include "./partials/game_item.html" %}
{% endfor %}
{% include "partials/pagination.html" %}
{% endblock %}