Zweite version

Playist management
This commit is contained in:
mikka 2026-04-19 11:19:35 +02:00
parent 39f95c2857
commit 46e9d5c40d
7 changed files with 70 additions and 14 deletions

7
templates/suche.html Executable file → Normal file
View file

@ -1,4 +1,7 @@
<form><input name="suche" placeholder="Suche" value="{{anfrage or ""}}"></form>
{% if liste == empty %}
<p>Du musst etwas in die Playlist Screiben</p>
{% endif %}
<form><input type="hidden" name="liste" value="{{liste}}"><input name="suche" placeholder="Suche" value="{{anfrage or ""}}"></form>
{% if ergebnisse %}
<form method="post"><ol>
{% for ergebnis in ergebnisse %}
@ -6,7 +9,7 @@
{% endfor %}</ol></form>
{%elif anfrage%}
<p>Leider gibt es diesen Eintrag nicht!</p>
<p>Leider gibt es den Eintrag {{anfrage}} nicht!</p>
{%endif%}
<a href="/">Doch nicht?</a>