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

songs

// step 1 — every audio file you upload becomes a song.

[ ↑ upload a song ] [ albums ]

# how audio works

[1] upload a song — pick an audio file here; it becomes a song you can publish.
[2] make an album (optional) — group songs together with a cover and a track order.

a song can be published on its own (a single) or as part of an album — your choice.

~/audio/songs/ {{ tracks | length }} songs
{% if tracks | length > 0 %}
{% for track in tracks %} {% endfor %}
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 %}
{% else %}

no songs yet

$ upload your first audio file to get started

{% endif %}
{% endblock content %}