17 lines
295 B
HTML
17 lines
295 B
HTML
{% extends "base.html" %}
|
|
{% block page_title %}Local playlists{% endblock %}
|
|
|
|
{% block main %}
|
|
<ul>
|
|
{% for playlist_name, playlist_url in playlists %}
|
|
<li><a href="{{ playlist_url }}">{{ playlist_name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock main %}
|
|
|
|
|
|
|
|
|
|
|
|
|