18 lines
562 B
HTML
18 lines
562 B
HTML
<ul id="playlist-{{ playlist_id }}" class="">
|
|
{% for set_entry in playlist.sets %}
|
|
{% set set_id = set_entry.id %}
|
|
{% include "fragments/playlist/set_entry.html" %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% if logged_in %}
|
|
<div class="flex flex-col items-center">
|
|
<button class="text-beige mt-2"
|
|
hx-post="/api/playlist/{{ playlist_id }}/set"
|
|
hx-target="#playlist-{{ playlist_id }}"
|
|
hx-swap="beforeend transition:true">
|
|
<i class="fa fa-plus" aria-hidden="true"></i>
|
|
Afegeix set
|
|
</button>
|
|
</div>
|
|
{% endif %}
|