{# Renders /api/query/list-style results (or a query error) for the search page. #} {% if error %}

Query error: {{ error }}

{% elif results %}

{{ results | length }} {{ "albums" if albums else "tracks" }} found.

{% if albums %} {% else %} {% endif %} {% for row in results %} {% if albums %} {% else %} {% endif %} {% endfor %}
Album artistAlbumYear
ArtistAlbumTitleTrackYear
{{ row['albumartist'] }}{{ row['album'] }}{{ row['year'] or "" }}
{{ row['artist'] }}{{ row['album'] }}{{ row['title'] }}{{ row['track'] or "" }}{{ row['year'] or "" }}
{% else %}

No matches.

{% endif %}