aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/local_playlists_list.html
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2019-07-06 23:08:04 -0700
committerJames Taylor <user234683@users.noreply.github.com>2019-07-06 23:08:04 -0700
commit6261add37de1800c90b0942a77cca99baf0b1973 (patch)
tree99d0e651bb2a4172a2634ce466904342009f5c60 /youtube/templates/local_playlists_list.html
parentc0617670f78bf61ccf3aa0c5904091146b630104 (diff)
downloadyt-local-6261add37de1800c90b0942a77cca99baf0b1973.tar.lz
yt-local-6261add37de1800c90b0942a77cca99baf0b1973.tar.xz
yt-local-6261add37de1800c90b0942a77cca99baf0b1973.zip
Convert local_playlist to flask framework
Diffstat (limited to 'youtube/templates/local_playlists_list.html')
-rw-r--r--youtube/templates/local_playlists_list.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/youtube/templates/local_playlists_list.html b/youtube/templates/local_playlists_list.html
new file mode 100644
index 0000000..269c151
--- /dev/null
+++ b/youtube/templates/local_playlists_list.html
@@ -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 %}
+
+
+
+
+
+