{% extends "base.html" %} {% block title %}Game - {{ game.id }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

This is the page for game with id {{ game.id }}, played on date {{ game.date.strftime('%Y-%m-%d') }}

Participants

{% if game.description %}

The description of the game is: {{ game.description }}

{% endif %} {% endblock %}