blob: fdf53efbf7b124185279779ba65abcee33ebfe9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!doctype html>
<html lang="de">
<meta charset="utf-8">
<head>
<title>Lehrerspruch-Wahlplattform</title>
<link rel="stylesheet" type="text/css" href="/static/normalize.css">
<link rel="stylesheet" type="text/css" href="/static/skeleton.css">
</head>
<body>
<h1>Lehrersprüche</h1>
{% for joke in jokes %}
<div class="row">
<div class="one columns">
<form action="vote" method="post">
<input type="hidden" name="id" value="{{ joke.id }}">
<button type="submit" name="vote" value="upvote">⇧ ({{ joke.upvotes }})</button>
<button type="submit" name="vote" value="downvote">⇩ ({{ joke.downvotes }})</button>
</form>
</div>
<div class="eleven columns">
<p>
{{ joke.text }}
</p>
</div>
</div>
{% endfor %}
<form action="submit" method="post">
<div class="container">
<div class="four columns">
<p>Neuen Spruch hinzufügen</p>
</div>
<div class="four columns">
<textarea name="text"></textarea>
</div>
<div class="four columns">
<input type="submit" value="hinzufügen">
</div>
</div>
</form>
</body>
</html>
|