{# vim: set syntax=htmldjango: #} {% extends "exordium/base.html" %} {% load static %} {% block body %}
{% if album.has_album_art %}{% else %}{% endif %} {% if request.user.is_staff %}
{% endif %}

Artist: {{ album.artist }}

{% for artist in groups %} {% if forloop.first %}

Ensemble{{ groups|pluralize }}: {% endif %} {{ artist }}{% if not forloop.last %},{% endif %} {% if forloop.last %}{% if have_empty_group %} (Some tracks have no ensemble){% endif %}

{% endif %} {% endfor %} {% for artist in conductors %} {% if forloop.first %}

Conductor{{ conductors|pluralize }}: {% endif %} {{ artist }}{% if not forloop.last %},{% endif %} {% if forloop.last %}{% if have_empty_conductor %} (Some tracks have no conductor){% endif %}

{% endif %} {% endfor %} {% for artist in composers %} {% if forloop.first %}

Composer{{ composers|pluralize }}: {% endif %} {{ artist }}{% if not forloop.last %},{% endif %} {% if forloop.last %}{% if have_empty_composer %} (Some tracks have no composer){% endif %}

{% endif %} {% endfor %}

Album: {{ album }}

{% if album.year != 0 %}

Year: {{ album.year }}

{% endif %}

Tracks: {{ album.song_set.count }}

Length: {{ album.get_total_time_str }}

Added on: {{ album.time_added }}

{% if show_download_button %}
{% endif %}

{% block albumbody %} {% endblock %} {% endblock %}