1
0
mirror of https://github.com/bspeice/Melodia synced 2025-08-01 13:14:49 -04:00
Files
Melodia/web/views/templates/components/playlist_sidebar
2013-02-05 15:06:31 -05:00

10 lines
316 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_list %}
<li><a href="#" data-playlist-name="{{ playlist.name }}">{{ playlist.name }}</a></li>
{% endfor %}
</ul>