{% extends "base_list.html" %} {% load chart_tags %} {% block title %}Charts{% endblock %} {% block head_extra %} {% endblock %} {% block lists %}
{% if prev_period %} ← Previous {% endif %}
{{ period_type|title }}
{% if next_period %} Next → {% endif %}
{% if chart_years %}
{% for y in chart_years|slice:":5" %} {{ y }} {% endfor %}
{% endif %}
Months: {% for m in "1,2,3,4,5,6,7,8,9,10,11,12"|split:"," %} {{ m }} {% endfor %} | Weeks: {% for w in "1,4,8,13,17,21,26,30,34,39,43,47,52"|split:"," %} {{ w }} {% endfor %} +
🎵 Spotify Tracks 🎵 Bandcamp Tracks
{% if chart_type == "maloja" %} {% include "scrobbles/_top_charts.html" %} {% else %}
{% if charts.artist %}

🎤 Top Artists

{% for chart in charts.artist %} {% endfor %}
Rank Artist Scrobbles
{{chart.rank}} {{chart.artist.name}} {{chart.count}}
{% endif %} {% if charts.track %}

🎵 Top Tracks

{% for chart in charts.track %} {% endfor %}
Rank Track Scrobbles
{{chart.rank}} {{chart.track.title}} {{chart.count}}
{% endif %} {% if charts.tv_series %}

📺 Top TV Shows

{% for chart in charts.tv_series %} {% endfor %}
Rank TV Show Episodes Watched
{{chart.rank}} {{chart.tv_series.name}} {{chart.count}}
{% endif %} {% if charts.album %}

💿 Top Albums

{% for chart in charts.album %} {% endfor %}
Rank Album Scrobbles
{{chart.rank}} {{chart.album.title}} {{chart.count}}
{% endif %} {% if charts.video %}

🎬 Top Videos

{% for chart in charts.video %} {% endfor %}
Rank Video Plays
{{chart.rank}} {{chart.video.title}} {{chart.count}}
{% endif %} {% if charts.board_game %}

🎲 Top Board Games

{% for chart in charts.board_game %} {% endfor %}
Rank Board Game Plays
{{chart.rank}} {{chart.board_game.title}} {{chart.count}}
{% endif %} {% if charts.book %}

📚 Top Books

{% for chart in charts.book %} {% endfor %}
Rank Book Pages Read
{{chart.rank}} {{chart.book.title}} {{chart.count}}
{% endif %} {% if charts.food %}

🍽️ Top Foods

{% for chart in charts.food %} {% endfor %}
Rank Food Times Eaten
{{chart.rank}} {{chart.food.title}} {{chart.count}}
{% endif %} {% if charts.podcast %}

🎙️ Top Podcasts

{% for chart in charts.podcast %} {% endfor %}
Rank Podcast Episodes
{{chart.rank}} {{chart.podcast.title}} {{chart.count}}
{% endif %} {% if charts.trail %}

🥾 Top Trails

{% for chart in charts.trail %} {% endfor %}
Rank Trail Hikes
{{chart.rank}} {{chart.trail.title}} {{chart.count}}
{% endif %}
{% endif %} {% endblock %}