Search
{{ query }}
{% if not artists and not albums and not tracks %}
No matches.
{% endif %}
{% if artists %}
Artists ({{ artists|length }})
{% for ar in artists %}
-
{% endfor %}
{% endif %}
{% if albums %}
Albums ({{ albums|length }})
{% for album in albums %}
-
{% endfor %}
{% endif %}
{% if tracks %}
Tracks ({{ tracks|length }})
{% for track in tracks %}
-
{% endfor %}
{% endif %}