{% if data.total and data.total > 0 %}
{% for slug, info in data.categories.items %} {% if forloop.first %}
{% if slug == "early_bird" %}
🌅
{% elif slug == "day_jay" %}
☀️
{% else %}
🌙
{% endif %}

{{ info.label }}

{{ info.pct }}%
{{ info.count }} scrobbles
{% else %}
{% if slug == "early_bird" %} 🌅 {% elif slug == "day_jay" %} ☀️ {% else %} 🌙 {% endif %}
{{ info.label }}
{{ info.pct }}%
{{ info.count }} scrobbles
{% endif %} {% endfor %}
Total: {{ data.total }} scrobbles across Books, Trails, Birding Locations, and Board Games
By Media Type
{% for mt, mt_data in data.by_media_type.items %}
{{ mt }}
{% for slug, info in mt_data.categories.items %} {% endfor %}
Category Scrobbles %
{{ info.label }} {{ info.count }} {{ info.pct }}%
Total {{ mt_data.total }}
{% endfor %} {% else %}

No data found for Books, Trails, Birding Locations, or Board Games in this period.

{% endif %}