{% 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 Albums

{% for key, name in chart_keys.items %} {% with maloja_charts.album|get_item:key as albums %}
{% if albums.0 %}
#1 {{albums.0.album.title}}
{% if albums.0.album.cover_image %} {% else %} {% endif %}
{% for i in "2345" %} {% with albums|get_item:forloop.counter as album %} {% if album %}
#{{forloop.counter|add:1}} {{album.album.title}}
{% if album.album.cover_image %} {% else %} {% endif %}
{% endif %} {% endwith %} {% endfor %}
{% for i in "67891011121314" %} {% with albums|get_item:forloop.counter|add:5 as album %} {% if album %}
#{{forloop.counter|add:6}} {{album.album.title}}
{% if album.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 %}