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

{{ album.title }}

Uploaded tracks for this album.

{% if available_tracks | length > 0 %}
{% endif %} {% if tracks | length > 0 %}
{% for track in tracks %} {% endfor %}
Track File Status Featured Actions
{% if track.track_number %}{{ track.track_number }}. {% endif %}{{ track.title }} {{ track.audio_file_id }} {% if track.published %} Published {% else %} Draft {% endif %} {% if track.featured %} Yes {% else %} No {% endif %}
Play {% if track.published %}
{% else %}
{% endif %}
{% else %}

No tracks yet.

Upload the first audio file for this album.

{% endif %}
{% endblock content %}