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

{{ album.title }}

Uploaded tracks for this album.

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

No tracks yet.

Upload the first audio file for this album.

{% endif %}
{% endblock content %}