spotistats/templates/index.html
2022-10-03 21:48:00 +01:00

19 lines
389 B
HTML

{% extends "base.html" %}
{% block title %}
Your playlists
{% endblock %}
{% block content %}
<h1>Your playlists</h1>
<ul>
{% for playlist in playlists %}
<li>
<a href="{{ url_for('playlist', id=playlist.id) }}">
{{ playlist.name }}
</a>
</li>
{% endfor %}
</ul>
{% endblock %}