spotistats/templates/index.html

20 lines
389 B
HTML
Raw Permalink Normal View History

2022-10-03 20:48:00 +00:00
{% 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 %}