-
Notifications
You must be signed in to change notification settings - Fork 4
/
activityTop10V2.html
36 lines (32 loc) · 1.13 KB
/
activityTop10V2.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
<!doctype html>
<html lang="en">
<head>
<title>Activity Top10</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<p>
<span>Type:</span>
<select id="sel-type">
<!-- auto-populated by JS -->
</select>
<span>Sort by:</span>
<select id="sel-measure">
<!-- auto-populated by JS -->
</select>
<!-- YearStart and End -->
<span>Year:</span>
<input type="number" id="sel-yearMin" name="yearMin" min="1900" max="2023" step="1" value="1900" size="4" maxlength="4"> - <input type="number" id="sel-yearMax" name="yearMax" min="1900" max="2023" step="1" value="2023" size="4" maxlength="4">
</p>
<!-- Tabulator table -->
<div id="table-activity-list" style="width:100%; height: 800px;"></div>
<link href="lib/tabulator.min.css" rel="stylesheet">
<script src="lib/tabulator-5.4.min.js"></script>
<script>
const session = "SessionIdPlaceholder";
</script>
<script src="./helper.js"></script>
<script src="./activityTop10V2.js"></script>
</body>
</html>