{% extends "base.html" %} {% block title %}{{ title }}{% endblock title %} {% load static %} {% block content %}
Hours Games Games ({{ year }}) Purchases Spendings ({{ total_spent_currency }}) {{ total_spent_currency }}/game
{{ total_hours }} {{ total_games }} {{ total_2023_games }} {{ all_purchased_this_year.count }} {{ total_spent }} {{ spent_per_game }}

Top games by playtime

{% for game in top_10_games_by_playtime %} {% endfor %}
Name Playtime (hours)
{{ game.name }} {{ game.formatted_playtime }}

Platforms by playtime

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

Purchases

{% for purchase in all_purchased_this_year %} {% endfor %}
Name Price ({{ total_spent_currency }}) Date
{{ purchase.edition.name }} {{ purchase.price }} {{ purchase.date_purchased | date:"d/m/Y" }}
{% endblock content %}