mirror of
https://github.com/bspeice/Melodia
synced 2025-07-03 23:14:46 -04:00
Initial login templates and views
This commit is contained in:
11
web/views/templates/components/playlist_sidebar
Normal file
11
web/views/templates/components/playlist_sidebar
Normal file
@ -0,0 +1,11 @@
|
||||
{# 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
|
Reference in New Issue
Block a user