-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.html
63 lines (56 loc) · 1.62 KB
/
stats.html
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
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Vote...</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="static/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="static/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="static/vote.css" />
<meta name="description" content="Vote... Stats..." />
<meta name="robots" content="noindex,nofollow" />
<script type="text/javascript" src="static/ajax.js"></script>
<script type="text/javascript" src="static/vote.js"></script>
<script type="text/javascript" src="static/sort.js"></script>
</head>
<body onload="vote.stats();">
<header>
<div id="title">Stats</div>
<span id="status"></span>
<span id="reload" class="button" onclick="vote.stats()">Reload</span>
<span id="sumVotes"></span>
</header>
<span>TopVoted/TopHated</span>
<table>
<thead>
<tr id="tHead">
<th>ID</th>
<th>Name</th>
<th>Bild</th>
<th>Ja</th>
<th>Nein</th>
<th>Durchschnitt</th>
</tr>
</thead>
<tbody id="top">
</tbody>
</table>
<table id="theTable" class="sortable">
<thead>
<tr id="headLine">
<th class="sorttable_numeric">ID</th>
<th>Name</th>
<th>Bild</th>
<th class="sorttable_numeric">Ja</th>
<th class="sorttable_numeric">Nein</th>
<th class="sorttable_numeric">Durchschnitt</th>
</tr>
</thead>
<tbody id="tableBody"></tbody>
</table>
<footer>
</footer>
<script>
setInterval(vote.stats, 5000);
</script>
</body>
</html>