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