Melodia/web/views/templates/components/playlist_sidebar

12 lines
291 B
Plaintext
Raw Normal View History

2013-02-05 14:20:26 -05:00
{# 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>
<!-- vim: ft=htmldjango