aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/local_playlists_list.html
blob: f4008086ca124c8ba3717fd43afc6cd1a2415b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 %}