-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilter.html
102 lines (100 loc) · 2.15 KB
/
filter.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="css/style.css" />
</head>
<body>
<div>
<label for="fname">Enter Your File</label>
<label id="upload" for="xlf">Browse...</label>
<input type="file" name="xlfile" id="xlf" />
<label><span>Enter Start date of Week (YYYY-MM-DD)</span><br/><input type="text" value="" maxlength="4" id="year"/>-<input type="text" value="" maxlength="2" id="month"/>-<input type="text" value="" maxlength="2" id="day" /></label>
<button onclick="process_wb();"> Process File </button>
</div>
<br/>
<!--<pre id="out"></pre>-->
<div id="output">
<table width="100%">
<tr>
<th>
</th>
<th>
Monthly Data
</th>
<th>
Weekly Data
</th>
</tr>
<tr>
<th>
Incidents
</th>
<td>
<label id="mInc"></label><br/>
</td>
<td>
<label id="wInc"></label><br/>
</td>
</tr>
<tr>
<th>
Tasks
</th>
<td>
<label id="mTask"></label><br/>
</td>
<td>
<label id="wTask"></label><br/>
</td>
</tr>
<tr>
<th>
CTasks
</th>
<td>
<label id="mCTask"></label><br/>
</td>
<td>
<label id="wCTask"></label><br/>
</td>
</tr>
<tr>
<th colspan="3">
Backlog Data
</th>
</tr>
<tr>
<th width="50%">
Incident More than Week
</th>
<td colspan="2">
<label id="mWeek"></label><br/>
</td>
</tr>
<tr>
<th width="50%">
Incident Less than Week
</th>
<td colspan="2">
<label id="lWeek"></label><br/>
</td>
</tr>
<tr>
<th colspan="3">
Incidents this week
</th>
</tr>
<tr>
<td colspan="3">
<label id="inc"></label>
</td>
</tr>
</table>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/shim.js"></script>
<script src="js/xlsx.full.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>