1
0
mirror of https://github.com/bspeice/Melodia synced 2025-07-01 05:45:50 -04:00

Enable playlist listing, fix various javascript errors

This commit is contained in:
Bradlee Speice
2013-02-05 15:06:31 -05:00
parent 75b678d56c
commit 5c538d395e
4 changed files with 19 additions and 5 deletions

View File

@ -3,7 +3,7 @@
<ul class="nav nav-list">
<li class="nav-header">Playlists</li>
{% for playlist in Playlist.objects.all %}
<li>{{ playlist.name }}</li>
{% for playlist in playlist_list %}
<li><a href="#" data-playlist-name="{{ playlist.name }}">{{ playlist.name }}</a></li>
{% endfor %}
</ul>