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

albums

// step 2 — group songs into a release with a cover.

[ + new album ] [ songs ]

# before you make an album

[1] upload your songs first — an album is built from songs that already exist.
[2] create the album here, then tick the songs that belong to it (or upload more into it later).
~/audio/albums/ {{ albums | length }} albums
{% if albums | length > 0 %}
{% for row in albums %} {% endfor %}
album status songs actions
{{ row.album.title }} {% if row.album.published %} published {% else %} draft {% endif %} {{ row.track_count }}
{% else %}

no albums yet

$ create an album to group your songs into a release

{% endif %}
{% endblock content %}