Arreglat error afegint sets en pàgines amb múltiples llistes
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
<li class="flex flex-row grow items-center
|
||||
m-4 rounded-lg bg-white
|
||||
px-2 py-1 my-1"
|
||||
id="set-entry-{{ set_id }}"
|
||||
id="set-entry-{{ playlist_id }}-{{ set_id }}"
|
||||
hx-get="/api/llista/{{ playlist_id }}/set/{{ set_id }}"
|
||||
hx-target="#set-entry-{{ set_id }}"
|
||||
hx-target="#set-entry-{{ playlist_id }}-{{ set_id }}"
|
||||
hx-swap="outerHTML"
|
||||
hx-trigger="reload-set-{{ set_id }}">
|
||||
hx-trigger="reload-set-{{ playlist_id }}-{{ set_id }}">
|
||||
{% if set_entry.temes | length > 1 or not set_entry.temes[0].tema %}
|
||||
{% set set_url = "/llista/%d/set/%d" | format(playlist_id, set_id) %}
|
||||
{% else %}
|
||||
@@ -26,13 +26,13 @@ hx-get="/api/llista/{{ playlist_id }}/set/{{ set_id }}"
|
||||
{% if logged_in %}
|
||||
<button class="text-beige w-full"
|
||||
hx-delete="/api/llista/{{ playlist_id }}/set/{{ set_id }}"
|
||||
hx-target="#set-entry-{{ set_id }}"
|
||||
hx-target="#set-entry-{{ playlist_id }}-{{ set_id }}"
|
||||
hx-swap="outerHTML">
|
||||
<i class="fa fa-times" aria-hidden="true"></i>
|
||||
Esborra el set
|
||||
</button>
|
||||
{% endif %}
|
||||
<ol id="set-entry-{{ set_id }}-list"
|
||||
<ol id="set-entry-{{ playlist_id }}-{{ set_id }}-list"
|
||||
class="flex flex-col items-start w-full">
|
||||
{% for tema_entry in set_entry.temes %}
|
||||
{% if new_entry %}
|
||||
@@ -45,7 +45,7 @@ hx-get="/api/llista/{{ playlist_id }}/set/{{ set_id }}"
|
||||
{% if logged_in %}
|
||||
<button class="text-beige mt-2 w-full"
|
||||
hx-post="/api/llista/{{ playlist_id }}/set/{{ set_id }}"
|
||||
hx-target="#set-entry-{{ set_id }}-list"
|
||||
hx-target="#set-entry-{{ playlist_id }}-{{ set_id }}-list"
|
||||
hx-swap="beforeend transition:true">
|
||||
<i class="fa fa-plus" aria-hidden="true"></i>
|
||||
Afegeix un tema
|
||||
|
||||
@@ -100,7 +100,7 @@ def delete_tema(playlist_id: int, set_id: int, entry_id: int):
|
||||
playlists_service.delete_tema(entry_id=entry_id)
|
||||
if not playlists_service.get_set(playlist_id=playlist_id, set_id=set_id):
|
||||
headers = {
|
||||
"HX-Trigger": f"reload-set-{set_id}"
|
||||
"HX-Trigger": f"reload-set-{playlist_id}-{set_id}"
|
||||
}
|
||||
else:
|
||||
headers = {}
|
||||
|
||||
Reference in New Issue
Block a user