29 lines
900 B
HTML
29 lines
900 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="/static/Eurovision_Song_Contest_heart_Wikidata_(2014–2025).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>
|