{% for chart_name, tracks in current_track_charts.items %}
#1 {{tracks.0.title}}
{% if tracks.0 %}
{% if tracks.0.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#2 {{tracks.1.title}}
{% if tracks.1 %}
{% if tracks.1.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#3 {{tracks.2.title}}
{% if tracks.2 %}
{% if tracks.2.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#4 {{tracks.3.title}}
{% if tracks.3 %}
{% if tracks.3.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#5 {{tracks.4.title}}
{% if tracks.4 %}
{% if tracks.4.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#6 {{tracks.5.title}}
{% if tracks.5 %}
{% if tracks.5.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#7 {{tracks.6.title}}
{% if tracks.6 %}
{% if tracks.6.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#8 {{tracks.7.title}}
{% if tracks.7 %}
{% if tracks.7.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#9 {{tracks.8.title}}
{% if tracks.8 %}
{% if tracks.8.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#10 {{tracks.9.title}}
{% if tracks.9 %}
{% if tracks.9.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#11 {{tracks.10.title}}
{% if tracks.10 %}
{% if tracks.10.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#12 {{tracks.11.title}}
{% if tracks.11 %}
{% if tracks.11.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#13 {{tracks.12.title}}
{% if tracks.12 %}
{% if tracks.12.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
#14 {{tracks.13.title}}
{% if tracks.13 %}
{% if tracks.13.album.cover_image %}

{% else %}

{% endif %}
{% endif %}
{% endfor %}
TV Shows Watched
{% if series_this_week %}
This Week
{% for scrobble in series_this_week %}
| {{scrobble.video}} |
{{scrobble.timestamp|date:"N d"}} |
{% empty %}
| No episodes watched this week |
{% endfor %}
{% endif %}
{% if series_this_month %}
This Month
{% for scrobble in series_this_month %}
| {{scrobble.video}} |
{{scrobble.timestamp|date:"N d"}} |
{% empty %}
| No episodes watched this month |
{% endfor %}
{% endif %}
{% if videos_this_week or videos_this_month %}
Movies Watched
{% if videos_this_week %}
This Week
{% for scrobble in videos_this_week %}
| {{scrobble.video}} |
{{scrobble.timestamp|date:"N d"}} |
{% empty %}
| No movies watched this week |
{% endfor %}
{% endif %}
{% if videos_this_month %}
This Month
{% for scrobble in videos_this_month %}
| {{scrobble.video}} |
{{scrobble.timestamp|date:"N d"}} |
{% empty %}
| No movies watched this month |
{% endfor %}
{% endif %}
{% endif %}
{% if youtue_this_week or youtube_this_month %}
YouTube Watched
{% if youtube_this_week %}
This Week
{% for scrobble in youtube_this_week %}
| {{scrobble.video}} |
{{scrobble.timestamp|date:"N d"}} |
{% empty %}
| No youtube watched this week |
{% endfor %}
{% endif %}
{% if youtube_this_month %}
This Month
{% for scrobble in youtube_this_month %}
| {{scrobble.video}} |
{{scrobble.timestamp|date:"N d"}} |
{% empty %}
| No youtube watched this month |
{% endfor %}
{% endif %}
{% endif %}