{% endblock %}
{% block item_list %}
{% if view_mode == 'list' and albums %}
{% set grouped_albums = {} %}
{% for album in albums %}
{% set first_letter = album.title|first|upper %}
{% if grouped_albums[first_letter] is defined %}
{% set grouped_albums = grouped_albums|merge({(first_letter): grouped_albums[first_letter]|merge([album])}) %}
{% else %}
{% set grouped_albums = grouped_albums|merge({(first_letter): [album]}) %}
{% endif %}
{% endfor %}
{% for letter, letter_albums in grouped_albums|sort %}
{% if filters.genres or filters.artists or search %}
Active Filters
{% if search %}
Search: "{{ search }}"
{% endif %}
{% for genre in filters.genres %}
Genre: {{ genre }}
{% endfor %}
{% for artist in filters.artists %}
Artist: {{ artist }}
{% endfor %}
{% endif %}
Quick Stats
Total Albums{{ pagination.total_items }}
This Page{{ albums|length }}
{% if pagination.total_pages > 1 %}
Page{{ pagination.current_page }} of {{ pagination.total_pages }}
{% endif %}
{% endblock %}
{% block content %}
Music
{% if pagination.total_items > 0 %}
{{ pagination.total_items }} albums
{% if search %}
matching "{{ search }}"
{% endif %}
{% if filters.genres or filters.artists %}
{% if filters.genres %}
{{ filters.genres|join(', ') }}
{% endif %}
{% if filters.artists %}
{{ filters.artists|join(', ') }}
{% endif %}
{% endif %}
{% endif %}
{% if albums is empty %}
{% if search or filters.genres or filters.artists %}
No albums found matching your criteria
{% else %}
No albums found
{% endif %}
{% if search or filters.genres or filters.artists %}
Try adjusting your search terms or filters.
{% else %}
Start syncing your music libraries to see your albums here.
{% endif %}
{% if search or filters.genres or filters.artists %}
Clear filters
{% endif %}