Convert local_playlist to flask framework

This commit is contained in:
James Taylor
2019-07-06 23:08:04 -07:00
parent c0617670f7
commit 6261add37d
5 changed files with 120 additions and 141 deletions

View File

@@ -0,0 +1,16 @@
{% 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 %}