{% extends "admin/base.html" %}
{% block title %}{{ album.title }} — tracks{% endblock title %}
{% block crumb %}audio/{{ album.slug }}{% endblock crumb %}
{% block content %}
// album · {{ tracks | length }} song(s) ·
{% if album.published %}published{% else %}draft{% endif %}
{{ album.title }}
# two ways to add a song to this album
| # | song | status | featured | actions |
|---|---|---|---|---|
| {% if track.track_number %}{{ track.track_number }}{% else %}—{% endif %} | {{ track.title }} | {% if track.published %} published {% else %} draft {% endif %} | {% if track.featured %} featured {% else %} — {% endif %} |
play
{% if track.published %}
{% else %}
{% endif %}
|
this album has no songs yet
$ upload a file into the album, or add an existing song above