-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
55 lines (46 loc) · 1.66 KB
/
index.php
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
include_once "lib.php";
$stats = load_stats();
?>
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Briefwahlstatistik SP-Wahl 2022</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="content">
<p class="language-navi"><a href="en.php">English Version</a></p>
<h1>Briefwahl­statistik<br><abbr title="Studierendenparlament">SP</abbr>-Wahl Bonn 2022</h1>
<p>Die gesendeten Rückbriefe werden zunächst gesammelt, bevor sie am 20. Januar 2022 ab 16 Uhr
öffentlich ausgezählt werden.</p>
<p>Diese Übersichtsseite listet für jeden Tag bis dahin die Anzahl der Rückbriefe auf, die uns an jenem Tag von der
Poststelle der Universität übergeben wurden.</p>
<p class="lead">
Bislang eingegangene Rückbriefe:<br>
<span id="sum"><?php print_number_of_letters_so_far_de($stats); ?></span> <span id="tada">🎉</span>
</p>
<p class="lead">
Bei <b><?php print_eligible_voters_de($stats); ?></b> Wahlberechtigten entspricht das bislang einer
Wahlbeteiligung von <b id="turnout"><?php print_turnout_de($stats); ?></b>
</p>
<div id="details">
<p>Hier sind die Zahlen im Detail:</p>
<table>
<tr>
<th>Datum</th>
<th># Briefe</th>
</tr>
<?php
$maxCount = max($stats['days']);
foreach ($stats['days'] as $day => $count) {
print_row_de($day, $count, $maxCount);
}
?>
</table>
</div>
</div>
</body>
</html>