{# Renders one page of /fragment/search/results (or a query error) for the search page. #} {% if error %}

Query error: {{ error }}

{% elif results %}

Showing {{ start_index }}–{{ end_index }} of {{ total }} {{ "albums" if albums else "tracks" }}.

{% 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 "" }}
{% if page > 1 or end_index < total %}

{% if page > 1 %} {% endif %} {% if end_index < total %} {% endif %}

{% endif %} {% elif total %}

No results on this page — {{ total }} {{ "albums" if albums else "tracks" }} match.

{% else %}

No matches.

{% endif %}