1
0
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:
Bradlee Speice
2013-02-05 14:20:26 -05:00
parent c5fec8cfd3
commit 4f9b717674
8 changed files with 71 additions and 33 deletions

View 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