{% from "player/_album_action_menu.html" import album_action_menu %} {% from "player/_icons.html" import play_icon, queue_add_icon, search_icon %}
{% if count_text %}
{{ count_text }}
{% endif %}
{% if query.music_folder_id is not none %} {% endif %}

Artists

{% if artist_previous_url or artist_next_url %} {% endif %}
{% if artist_results %} {% else %}
No artists found.
{% endif %}

Albums

{% if album_previous_url or album_next_url %} {% endif %}
{% if search_results.albums.items %}
{% for album in search_results.albums.items %}
{% set art_url = album|album_art_url %} {% if art_url %} {% else %} {% endif %} {% if album.track_count %}
{{ album_action_menu(album.artist ~ " - " ~ (album.album|display_album_title), album|album_radio_url) }}
{% endif %}
{{ album.album|display_album_title }} {{ album.artist }}{% if album.year %} - {{ album.year }}{% endif %}
{% endfor %}
{% else %}
No albums found.
{% endif %}

Tracks

{% if song_previous_url or song_next_url %} {% endif %}
{% if track_views %}
{% for track in track_views %} {% set selected_track_album_url = "/albums/" ~ track.album_id ~ "?selectedTrackId=" ~ track.track_id %} {% endfor %}
{% else %}
No tracks found.
{% endif %}