Esc-Playlists/templates/suche.html

29 lines
958 B
HTML

<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="https://commons.wikimedia.org/w/index.php?title=Special:Redirect/file/Eurovision_Song_Contest_Heart_Wikidata.svg&width=300"></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>