{% extends "base.html" %} {% block title %}{{ album.title }}{% endblock title %} {% block content %}

{{ album.title }}

{% if album.artist %}

{{ album.artist }}

{% endif %}
Back to albums
{% if album.cover_image_id %} {% endif %} {% if album.description %}

{{ album.description }}

{% endif %}
{% if tracks | length > 0 %}
{% for track in tracks %}

{% if track.track_number %}{{ track.track_number }}. {% endif %}{{ track.title }}

{% endfor %}
{% else %}

No tracks yet.

{% endif %}
{% endblock content %}