{% load static chart_tags %} {% if maloja_charts %}

🎤 Top Artists

{% for key, name in chart_keys.items %} {% with maloja_charts.artist|get_item:key as artists %}
{% if artists.0 %}
#1 {{artists.0.artist.name}}
{% if artists.0.artist.thumbnail %} {{artists.0.artist.name}} {% else %} {{artists.0.artist.name}} {% endif %}
{% for i in "2345" %} {% with artists|get_item:forloop.counter as artist %} {% if artist %}
#{{forloop.counter|add:1}} {{artist.artist.name}}
{% if artist.artist.thumbnail %} {% else %} {% endif %}
{% endif %} {% endwith %} {% endfor %}
{% for i in "67891011121314" %} {% with artists|get_item:forloop.counter|add:5 as artist %} {% if artist %}
#{{forloop.counter|add:6}} {{artist.artist.name}}
{% if artist.artist.thumbnail %} {% else %} {% endif %}
{% endif %} {% endwith %} {% endfor %}
{% else %}

No data for this period

{% endif %}
{% endwith %} {% endfor %}

🎵 Top Tracks

{% for key, name in chart_keys.items %} {% with maloja_charts.track|get_item:key as tracks %}
{% if tracks.0 %}
#1 {{tracks.0.track.title}}
{% if tracks.0.track.album.cover_image %} {% else %} {% endif %}
{% for i in "2345" %} {% with tracks|get_item:forloop.counter as track %} {% if track %}
#{{forloop.counter|add:1}} {{track.track.title}}
{% if track.track.album.cover_image %} {% else %} {% endif %}
{% endif %} {% endwith %} {% endfor %}
{% for i in "67891011121314" %} {% with tracks|get_item:forloop.counter|add:5 as track %} {% if track %}
#{{forloop.counter|add:6}} {{track.track.title}}
{% if track.track.album.cover_image %} {% else %} {% endif %}
{% endif %} {% endwith %} {% endfor %}
{% else %}

No data for this period

{% endif %}
{% endwith %} {% endfor %}

📺 Top TV Shows

{% for key, name in chart_keys.items %} {% with maloja_charts.tv_series|get_item:key as shows %}
{% if shows.0 %}
#1 {{shows.0.tv_series.name}}
{% if shows.0.tv_series.cover_image %} {{shows.0.tv_series.name}} {% else %} {{shows.0.tv_series.name}} {% endif %}
{% for i in "2345" %} {% with shows|get_item:forloop.counter as show %} {% if show %}
#{{forloop.counter|add:1}} {{show.tv_series.name}}
{% if show.tv_series.cover_image %} {% else %} {% endif %}
{% endif %} {% endwith %} {% endfor %}
{% for i in "67891011121314" %} {% with shows|get_item:forloop.counter|add:5 as show %} {% if show %}
#{{forloop.counter|add:6}} {{show.tv_series.name}}
{% if show.tv_series.cover_image %} {% else %} {% endif %}
{% endif %} {% endwith %} {% endfor %}
{% else %}

No data for this period

{% endif %}
{% endwith %} {% endfor %}
{% endif %}