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 %}