{% extends "base.html" %} {% block "content" %}

{{ tag.name }}

{% with game_list=tag.game_set.all %}

Il y a {{ game_list|length }} jeu{{ game_list|pluralize:"x" }} marqué{{ game_list|pluralize }} avec ce tag :

{% for game in game_list %} {% include "./partials/game_item.html" %} {% endfor %} {% endwith %} {% endblock %}