{% extends "admin/base.html" %}
{% block title %}Songs{% endblock title %}
{% block crumb %}audio/songs{% endblock crumb %}
{% block content %}
// step 1 — every audio file you upload becomes a song.songs
# how audio works
a song can be published on its own (a single) or as part of an album — your choice.
| song | where | status | actions |
|---|---|---|---|
| {{ track.title }} | {% if track.album_id %} in an album {% else %} single {% endif %} | {% if track.published %} published {% else %} draft {% endif %} |
play
{% if track.published %}
{% else %}
{% endif %}
|