{# vim: set syntax=htmldjango: #} {% extends "exordium/base.html" %} {% load render_table from django_tables2 %} {% block body %}

Search results for "{{ q }}"

{% if length_error %}

Search strings must be at least three characters

{% else %} {% if found_results %} {% if artist_results %}

Artists

{% render_table artist_results "exordium/table.html" %} {% endif %} {% if album_results %}

Albums

{% render_table album_results "exordium/table.html" %} {% endif %} {% if song_results %}

Songs

{% render_table song_results "exordium/table.html" %} {% endif %} {% else %}

No results found!

{% endif %} {% endif %} {% endblock %}