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

{{ game.title }}

{% if game.image %} {{ game.title }} {% endif %}

{{ game.category }}


{{ game.get_player_range }}

{{ game.duration|default:"(Durée de jeu inconnue)" }}


{% for tag in game.tags.all %} {{ tag }}{% if not forloop.last %},{% endif %} {% empty %} (Aucun tag) {% endfor %}


{{ game.game_designer|default:"(Game designer inconnu·e)" }}

{{ game.illustrator|default:"(Illustrateur·trice inconnu·e)" }}

{{ game.editor|default:"(Éditeur inconnu)" }}

Description

{{ object.description|linebreaks }} {% if game.missing_elements %}

Pièces manquantes

{{ game.missing_elements|linebreaksbr }}

{% endif %}

Commentaires et propositions de variantes

{% url "inventory:add_game_comment" game.slug as add_comment_url %} {% include "comments.html" with comments=game.comments.all %} {% endblock %}