Esc-Playlists/templates/suche.html

29 lines
900 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<style>
form,a,p{
display: block;
text-align: center;
color: black;
}
#logo{
object-fit: scale-down;
}
#logocontaner{
margin: 3px;
}
</style>
<a href="/" id="logocontaner"><img src="/static/Eurovision_Song_Contest_heart_Wikidata_(20142025).svg"></img></a>
{% 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 %}
<p><button name="id" value={{ergebnis.id}}>{{ ergebnis["display-label"].value }}</button><p>{{ ergebnis.description.value }}</p></p>
{% endfor %}</ol></form>
{%elif anfrage%}
<p>Leider gibt es den Eintrag {{anfrage}} nicht!</p>
{%endif%}
<a href="/?liste={{liste}}">Doch nicht?</a>