-
Notifications
You must be signed in to change notification settings - Fork 2
/
stats.html
62 lines (51 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>LeechBlock Statistics</title>
<link href="/jquery-ui/jquery-ui.min.css" rel="stylesheet">
<link href="/options.css" rel="stylesheet">
<link href="/icons/leechblock32.ico" rel="icon" type="image/x-icon">
<link href="/icons/leechblock32.ico" rel="shortcut icon" type="image/x-icon">
<link id="themeLink" rel="stylesheet">
</head>
<body>
<div id="form-container">
<form id="form" style="display: none;">
<fieldset class="ui-widget ui-widget-content">
<legend>LeechBlock Statistics</legend>
<table id="statsTable" border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse;">
<tr id="statsRow0">
<th>Block Set</th>
<th>Start Date/Time</th>
<th>Time Spent<br>Since Start</th>
<th>Time Spent<br>Per Week</th>
<th>Time Spent<br>Per Day</th>
<th>Time Left in<br>Limit Period</th>
<th>Rollover Time</th>
<th>Lockdown<br>End Time</th>
<th><button id="restartAll" type="button">Restart All</button></th>
</tr>
<tr id="statsRow1">
<td id="blockSetName1">Block Set 1</td>
<td id="startTime1">N/A</td>
<td id="totalTime1">N/A</td>
<td id="perWeekTime1">N/A</td>
<td id="perDayTime1">N/A</td>
<td id="timeLeft1">N/A</td>
<td id="rolloverTime1">N/A</td>
<td id="ldEndTime1">N/A</td>
<td><button id="restart1" type="button">Restart</button></td>
</tr>
</table>
</fieldset>
</form>
</div>
<script src="/jquery-ui/external/jquery/jquery.js"></script>
<script src="/jquery-ui/jquery-ui.min.js"></script>
<script src="/common.js"></script>
<script src="/stats.js"></script>
</body>
</html>