{# 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" }}.
| Album artist | Album | Year | ||
|---|---|---|---|---|
| Artist | Album | Title | Track | Year |
| {{ row['albumartist'] }} | {{ row['album'] }} | {{ row['year'] or "" }} | ||
| {{ row['artist'] }} | {{ row['album'] }} | {{ row['title'] }} | {{ row['track'] or "" }} | {{ row['year'] or "" }} |
{% 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 %}