{% extends "common/internal_page.html" %} {% block breadcrumbs %} chipradio home {% endblock %} {% block content %} Landing page for DJDB app

Recent Reviews

Search the Database

{% if query_str %}

Query was "{{ query_str }}". {% if invalid_query %}
Invalid Query!{% endif %}

Artists

{{ query_results.Artist|length }} matching artist{{ query_results.Artist|pluralize }}
{% if query_results.Artist %} {% for artist in query_results.Artist %} {% endfor %}
{{ artist.pretty_name }} {{ artist.num_albums }} album{{ artist.num_albums|pluralize }}
{% endif %}

Albums

{{ query_results.Album|length }} matching album{{ query_results.Album|pluralize }}
{% if query_results.Album %} {% for album in query_results.Album %} {% endfor %}
{{ album.artist_name }} {{ album.title }} {% if album.num_reviews %} {{ album.num_reviews }} review{{ album.num_reviews|pluralize }} {% endif %}
{% endif %}

Tracks

{{ query_results.Track|length }} matching track{{ query_results.Track|pluralize }} {% if query_results.Track %} {% for track in query_results.Track %} {% endfor %}
{{ track.title }} {{ track.artist_name }} {{ track.album.title }}
{% endif %} {% endif %} {% endblock %}