aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/local_playlists_list.html
blob: 9b5f510b117c7d1c92ef11d4b8d9afcfee247b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% set page_title = 'Local playlists' %}
{% extends "base.html" %}

{% block main %}
    <ul>
        {% for playlist_name, playlist_url in playlists %}
            <li><a href="{{ playlist_url }}">{{ playlist_name }}</a></li>
        {% endfor %}
    </ul>
{% endblock main %}