{% extends "admin/base.html" %} {% block title %}New album{% endblock title %} {% block crumb %}audio/new-album{% endblock crumb %} {% block content %}

new album

// fill in the details, then tick the songs to include.

[ cancel ]
~/audio/albums/new

optional — png, jpg, webp or gif; uploaded right here, shown on the album page.

{% if available_tracks | length > 0 %}
{% for song in available_tracks %} {% endfor %}

only songs that aren’t in an album yet are shown. you can add or remove songs after creating the album.

{% else %}
no free songs to add — upload a song first, or create the album empty and add songs later.
{% endif %}
cancel
{% endblock content %}