blob: 21226780f192c5db275d67f215644791314db701 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!doctype html>
<html lang="de">
<meta charset="utf-8">
<head>
<title>Lehrerspruch-Wahlplattform</title>
</head>
<body>
<h1>Lehrersprüche</h1>
<ul>
{% for joke in jokes %}
<li>{{ joke.text }}</li>
{% endfor %}
</ul>
<form action="submit" method="post">
Neuen Spruch hinzufügen
<input type="text" name="text">
<input type="submit" value="hinzufügen">
</form>
</body>
</html>
|