Change title FOR REAL

This commit is contained in:
Sauer 2019-04-14 15:16:18 +02:00
parent f081aed84a
commit ec37126049

View File

@ -1,6 +1,7 @@
{% extends "base.html" %}
{% block content %}
<h1>Deine Antworten, liebe*r {{ user_id }}!</h1>
<h1>Deine Antworten, liebe*r {{ user_id }}:</h1>
<div>
<h2>Fiktionaler Lieblingscomputer</h2>
<ul>
<li {% if user_row[1] == "hal" %} class="choice" {% endif %}>HAL 9000 (2001: Odyssee im Weltraum)</li>
@ -9,7 +10,8 @@
<li {% if user_row[1] == "samantha" %} class="choice" {% endif %}>Samantha (Her)</li>
<li {% if user_row[1] == "tars" %} class="choice" {% endif %}>TARS und CASE (Interstellar)</li>
</ul>
</div>
<div>
<h2>Welcher HTTP-Status trifft am häufigsten auf dich zu?</h2>
<ul>
<li {% if user_row[2] == "200" %} class="choice" {% endif %}>200&nbsp;&ndash; OK</li>
@ -23,7 +25,8 @@
<li {% if user_row[2] == "451" %} class="choice" {% endif %}>451&nbsp;&ndash; Unavailable for Legal Reasons</li>
<li {% if user_row[2] == "502" %} class="choice" {% endif %}>502&nbsp;&ndash; Bad Gateway (Internetkurort)</li>
</ul>
</div>
<div>
<h2>Lieblingsgemüse</h2>
<ul>
<li {% if user_row[3] == "karotte" %} class="choice" {% endif %}>🥕 Karotte</li>
@ -34,7 +37,8 @@
<li {% if user_row[3] == "tomate" %} class="choice" {% endif %}>🍅 Tomate</li>
<li {% if user_row[3] == "chili" %} class="choice" {% endif %}>🌶️ Chili</li>
</ul>
</div>
<div>
<h2>Spirit Animal</h2>
<ul>
<li {% if user_row[4] == "feuer" %} class="choice" {% endif %}>Feuerfuchs</li>
@ -42,7 +46,8 @@
<li {% if user_row[4] == "erde" %} class="choice" {% endif %}>Erdferkel</li>
<li {% if user_row[4] == "luft" %} class="choice" {% endif %}>Luftschlange</li>
</ul>
</div>
<div>
<h2>Bevorzugtes Betriebssystem</h2>
<ul>
<li {% if user_row[5] == "windows" %} class="choice" {% endif %}>Windows</li>
@ -51,4 +56,12 @@
<li {% if user_row[5] == "glados" %} class="choice" {% endif %}>GLaDOS</li>
<li {% if user_row[5] == "kaffee" %} class="choice" {% endif %}>Kaffee</li>
</ul>
</div>
<div>
<h2>Bitte nicht ankreuzen!</h2>
<ul>
<li {% if user_row[6] == "y" %} class="choice" {% endif %}>Angekreuzt{% if user_row[6] == "y" %}. Wie rebellisch von dir! :) {% endif %}</li>
<li {% if user_row[6] == "n" %} class="choice" {% endif %}>Nicht angekreuzt{% if user_row[6] == "n" %}. Vorbildlich ;){% endif %}</li>
</ul>
</div>
{% endblock %}