{% extends "base.html" %} {% block title %} {{ title }} {% endblock title %} {% load static %} {% partialdef purchase-name %} {% if purchase.type != 'game' %} {{ purchase.name }} ({{ purchase.edition.name }} {{ purchase.get_type_display }}) {% else %} {% endif %} {% endpartialdef %} {% block content %}

Playtime

{% if total_games %} {% endif %} {% if all_finished_this_year_count %} {% endif %}
Hours {{ total_hours }}
Sessions {{ total_sessions }}
Days {{ unique_days }} ({{ unique_days_percent }}%)
Games {{ total_games }}
Games ({{ year }}) {{ total_2023_games }}
Finished {{ all_finished_this_year_count }}
Finished ({{ year }}) {{ this_year_finished_this_year_count }}
Longest session {{ longest_session_time }} ()
Most sessions {{ highest_session_count }} ()
Highest session average {{ highest_session_average }} ()
First play ({{ first_play_date }})
Last play ({{ last_play_date }})
{% if month_playtime %}

Playtime per month

{% for month in month_playtimes %} {% endfor %}
{{ month.month | date:"F" }} {{ month.playtime }}
{% endif %}

Purchases

Total {{ all_purchased_this_year_count }}
Refunded {{ all_purchased_refunded_this_year_count }} ({{ refunded_percent }}%)
Dropped {{ dropped_count }} ({{ dropped_percentage }}%)
Unfinished {{ purchased_unfinished_count }} ({{ unfinished_purchases_percent }}%)
Backlog Decrease {{ backlog_decrease_count }}
Spendings ({{ total_spent_currency }}) {{ total_spent }} ({{ spent_per_game }}/game)

Top games by playtime

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

Platforms by playtime

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

Finished

{% for purchase in all_finished_this_year %} {% endfor %}
Name Date
{% partial purchase-name %} {{ purchase.date_finished | date:"d/m/Y" }}
{% endif %} {% if this_year_finished_this_year %}

Finished ({{ year }} games)

{% for purchase in this_year_finished_this_year %} {% endfor %}
Name Date
{% partial purchase-name %} {{ purchase.date_finished | date:"d/m/Y" }}
{% endif %} {% if purchased_this_year_finished_this_year %}

Bought and Finished ({{ year }})

{% for purchase in purchased_this_year_finished_this_year %} {% endfor %}
Name Date
{% partial purchase-name %} {{ purchase.date_finished | date:"d/m/Y" }}
{% endif %} {% if purchased_unfinished %}

Unfinished Purchases

{% for purchase in purchased_unfinished %} {% endfor %}
Name Price ({{ total_spent_currency }}) Date
{% partial purchase-name %} {{ purchase.price }} {{ purchase.date_purchased | date:"d/m/Y" }}
{% endif %} {% if all_purchased_this_year %}

All Purchases

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