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

{{ game.name }} (#{{ game.pk }}) {% url 'edit_game' game.id as edit_url %} {% include 'components/edit_button.html' with edit_url=edit_url %}

{{ hours_sum }} total {{ session_average }} avg ({{ playrange }})


Editions ({{ edition_count }}) and Purchases ({{ purchase_count }})

Purchases ({{ purchases.count }})

Sessions ({{ sessions.count }}) {% url 'start_game_session' game.id as add_session_link %} {% include 'components/button.html' with title="Start new session" text="New" link=add_session_link %} and Notes ({{ sessions_with_notes_count }})

{% endblock content %}