{% extends "base.html" %} {% block title %}{{ title }}{% endblock title %} {% load static %} {% block content %}
Total hours Total games Released that year
{{ total_hours }} {{ total_games }} {{ total_2023_games }}

Top games by playtime

{% for purchase in top_10_by_playtime %} {% endfor %}
Name Playtime (hours)
{{ purchase.edition.name }} {{ purchase.formatted_playtime }}

Platforms by playtime

{% for item in total_playtime_per_platform %} {% endfor %}
Platform Playtime (hours)
{{ item.platform_name }} {{ item.formatted_playtime }}
{% endblock content %}