{% extends "base.html" %}
{% block title %}{{ title }}{% endblock title %}
{% load static %}
{% block content %}
    
        
            
        
        
            
                
                    | Total hours | Total games | Total 2023 games | 
            
                
                    | {{ total_hours }} | {{ total_games }} | {{ total_2023_games }} | 
            
        
        Top games by playtime
        
            
                
                    | Name | Playtime (hours) | 
            
            
                {% for purchase in top_10_by_playtime %}
                
                    | {{ purchase.edition.name }} | {{ purchase.formatted_playtime }} | 
                {% endfor %}
            
        
        Platforms by playtime
        
            
                
                    | Platform | Playtime (hours) | 
            
            
                {% for item in total_playtime_per_platform %}
                
                    | {{ item.platform_name }} | {{ item.formatted_playtime }} | 
                {% endfor %}
            
        
     
{% endblock content %}