{% extends "common/internal_page.html" %}
{% block breadcrumbs %}
chipradio home
{% endblock %}
{% block content %}
Landing page for DJDB app
Recent Reviews
{% for rev in recent_reviews %}
- {{ rev.subject.title }},
reviewed by {{ rev.author }}: {{ rev.title }}
Posted {{ rev.timestamp_display|date:"F j, Y P" }}
{% endfor %}
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 %}
{{ artist.pretty_name }} |
{{ artist.num_albums }} album{{ artist.num_albums|pluralize }} |
{% endfor %}
{% endif %}
Albums
{{ query_results.Album|length }}
matching album{{ query_results.Album|pluralize }}
{% if query_results.Album %}
{% endif %}
Tracks
{{ query_results.Track|length }}
matching track{{ query_results.Track|pluralize }}
{% if query_results.Track %}
{% endif %}
{% endif %}
{% endblock %}