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

Songs

Publish songs directly; albums only group them together.

{% if tracks | length > 0 %}
{% for track in tracks %} {% endfor %}
Song Group File Status Actions
{{ track.title }} {% if track.album_id %} Album {% else %} Ungrouped {% endif %} {{ track.audio_file_id }} {% if track.published %} Published {% else %} Draft {% endif %}
Play {% if track.published %}
{% else %}
{% endif %}
{% else %}

No songs yet.

Upload a song, then group it into an album when needed.

{% endif %}
{% endblock content %}