{% extends "common/internal_page.html" %} {% block breadcrumbs %} chipradio home / DJ Database home {% endblock %} {% block content %}

This is the album information page for {{ album.title }} by {{ album.artist_name }}. It is still very primitive.

{% if album.current_tags %}

Album Tags

{% for tag in album.sorted_current_tags %} [{{ tag }}] {% endfor %} {% endif %}

Tracks

{% for track in album.sorted_tracks %} {% endfor %}
{{ track.track_num }}. {{ track.title }} {{ track.duration }} {{ track.bit_rate_kbps }} kbps {% for tag in track.sorted_current_tags %} [{{tag}}] {% endfor %}

Reviews

{% if album.reviews %} Write another review of this album. {% for doc in album.reviews %}

{{ doc.title }}
By {{ doc.author }}
Added {{ doc.timestamp_display|date:"F j, Y P" }}
{{ doc.text|safe }}

{% endfor %} {% else %} No reviews yet! You could be the first to write a review of this album. {% endif %} {% endblock %}