{% extends "admin/base.html" %} {% block title %}Audio Albums{% endblock title %} {% block content %}

Audio Albums

Create albums and upload audio tracks.

{% if albums | length > 0 %}
{% for row in albums %} {% endfor %}
Album Status Tracks Actions
{{ row.album.title }} {% if row.album.published %} Published {% else %} Draft {% endif %} {{ row.track_count }}
{% else %}

No albums yet.

Create an album before uploading tracks.

{% endif %}
{% endblock content %}