-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 1.42 KB
/
index.html
File metadata and controls
45 lines (40 loc) · 1.42 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel ="stylesheet" href="./style.css">
<link rel="stylesheet" href="./libraries/jquery-ui-1.11.2/jquery-ui.min.css">
<script src="./libraries/jquery-1.11.1.js"></script>
<script src="./libraries/jquery-ui-1.11.2/jquery-ui.js"></script>
<script src="./misc.js"></script>
<script src="./main.js"></script>
</head>
<body onload="startFunction()">
<div id="controls">
<div id="mselector" class="control">
<!--<select id="voterList" class="control">
<option value="none">Select voter 1</option>
</select>-->
<div id="memberSearch" class="ui-widget">
<label for="voterList" class="control">Members: </label>
<input id="voterList">
</div>
<button id="memberDialogButton" type="button" onclick="memberDialogOpen()" disabled="disabled">Show all.</button>
</div>
<div id="dates" class="control">
<h4>Only show motions between:</h4>
<div id="dateDivOne" class="control">
<p>Start date</p>
<input type="text" name="startDate" id="startDate" disabled="disabled" onchange="dateChange()">
</div>
<div id="dateDivTwo" class="control">
<p>End date</p>
<input type="text" name="endDate" id="endDate" disabled="disabled" onchange="dateChange()">
</div>
</div>
<div id="memberDialog" title="Select members with checkboxes." hidden="hidden">
</div>
</div>
<div id="progressbar"><div class="progress-label">Loading...</div></div>
<table id="mainTable"></table>
</body>
</html>