{# 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.
| 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 "" }} |
No matches.
{% endif %}