mirror of
https://github.com/bspeice/Melodia
synced 2024-11-16 04:58:20 -05:00
10 lines
266 B
Plaintext
10 lines
266 B
Plaintext
|
{# This component assumes it has been placed in a sidebar, and controls options related to playlists. #}
|
||
|
|
||
|
|
||
|
<ul class="nav nav-list">
|
||
|
<li class="nav-header">Playlists</li>
|
||
|
{% for playlist in Playlist.objects.all %}
|
||
|
<li>{{ playlist.name }}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|