gestiojeux/inventory/templates/inventory/game_list.html
2020-11-22 19:01:21 +01:00

12 lines
313 B
HTML

{% extends "base.html" %}
{% block "content" %}
<h1>Liste des jeux</h1>
Il y a {{ game_list|length }} jeu{{ game_list|pluralize:"x" }} en salle jeux&nbsp;:
<ul>
{% for game in game_list %}
<li><a href="{{ game.get_absolute_url }}">{{game.title}}</a></li>
{% endfor %}
</ul>
{% endblock %}