1
0
mirror of https://github.com/bspeice/Melodia synced 2024-11-16 04:58:20 -05:00
Melodia/web/views/templates/components/playlist_sidebar
2013-02-05 14:29:45 -05:00

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>