diff options
Diffstat (limited to 'youtube/templates/local_playlists_list.html')
-rw-r--r-- | youtube/templates/local_playlists_list.html | 14 |
1 files changed, 14 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..61a6888 --- /dev/null +++ b/youtube/templates/local_playlists_list.html @@ -0,0 +1,14 @@ +{% set page_title = 'Local playlists' %} +{% extends "base.html" %} + +{% block style %} + <link href="/youtube.com/static/home.css" rel="stylesheet"/> +{% endblock style %} + +{% block main %} + <ul> + {% for playlist_name, playlist_url in playlists %} + <li><a href="{{ playlist_url }}">{{ playlist_name }}</a></li> + {% endfor %} + </ul> +{% endblock main %} |