{% extends "admin/base.html" %} {% block title %}Songs{% endblock title %} {% block content %}
Publish songs directly; albums only group them together.
| 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 %}
|