forked from sspathare97/fillmycycle
-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
346 lines (339 loc) · 8.91 KB
/
index.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fill My Cycle</title>
<meta charset="utf-8">
<meta name="description" content="Fill Cycles in Lab Evaluation Sheet. Automatically Fill Cycle in Lab Evaluation Sheet on the back side of Index page.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="icon" href="../assets/icons/favicon.ico" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="./styles/style.css">
<script src="./src/script.js"></script>
</head>
<body>
<div class="container">
<div class="top-container">
<header class="header">
<h3 class="title">Fill My Cycle</h3>
<div id="btn-mode">
<div><p id="mode-text">DARK</p></div>
<div><img id="mode-icon" src="./assets/icons/moon-icon.svg" alt=""></div>
</div>
</header>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3 col-xs-12">
<form class="form-inline" action="" onsubmit="return false">
<div class="row">
<h5 class="mrg">Need Help? <button class="btn btn-success btn-xs instr-ref">Click here to see instructions</button></h5>
</div>
<div class="row">
<div class="col-xs-6">
<table class="mrg ind">
<thead>
<tr>
<th colspan="2">Cycle 1</th>
</tr>
<tr>
<th><span id="c10">1</span> to </th>
<th><input class="form-control input-sm" type="number" min="1" max="15" step="1" value="" id="c11" maxlength="2" /></th>
</tr>
<tr>
<th colspan="2"><hr></th>
</tr>
</thead>
<tbody id="tbl01">
<tr>
<td>1</td>
<td><input class="form-control input-sm exp" type="number" min="0" max="100" step="1" maxlength="3"/></td>
</tr>
<tr>
<td>2</td>
<td><input class="form-control input-sm exp" type="number" min="0" max="100" step="1" maxlength="3"/></td>
</tr>
<tr>
<td>3</td>
<td><input class="form-control input-sm exp" type="number" min="0" max="100" step="1" maxlength="3"/></td>
</tr>
<tr>
<td>4</td>
<td><input class="form-control input-sm exp" type="number" min="0" max="100" step="1" maxlength="3"/></td>
</tr>
<tr>
<td>5</td>
<td><input class="form-control input-sm exp" type="number" min="0" max="100" step="1" maxlength="3"/></td>
</tr>
</tbody>
</table>
</div>
<div class="col-xs-6">
<table class="mrg ind">
<thead>
<tr>
<th colspan="2">Cycle 2</th>
</tr>
<tr>
<th><span id="c20">6</span> to </th>
<th><input class="form-control input-sm" type="number" min="2" max="30" step="1" value="" id="c21" maxlength="2"/></th>
</tr>
<tr>
<th colspan="2"><hr></th>
</tr>
</thead>
<tbody id="tbl02">
<tr>
<td>6</td>
<td><input class="form-control input-sm exp" type="number" min="0" max="100" step="1" maxlength="3"/></td>
</tr>
<tr>
<td>7</td>
<td><input class="form-control input-sm exp" type="number" min="0" max="100" step="1" maxlength="3"/></td>
</tr>
<tr>
<td>8</td>
<td><input class="form-control input-sm exp" type="number" min="0" max="100" step="1" maxlength="3"/></td>
</tr>
<tr>
<td>9</td>
<td><input class="form-control input-sm exp" type="number" min="0" max="100" step="1" maxlength="3"/></td>
</tr>
<tr>
<td>10</td>
<td><input class="form-control input-sm exp" type="number" min="0" max="100" step="1" maxlength="3"/></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<table class="ind" id="result">
<tr>
<td colspan="2">
<hr>
</td>
</tr>
<tr>
<td>Average</td>
<td>
<input class="form-control input-sm ip" type="number" min="20" max="100" step="2" id="ip1" />
</td>
</tr>
</table>
</div>
<div class="col-xs-6">
<table class="ind">
<tr>
<td colspan="2">
<hr>
</td>
</tr>
<tr>
<td>Average</td>
<td>
<input class="form-control input-sm ip" type="number" min="20" max="100" step="2" id="ip2" />
</td>
</tr>
</table>
</div>
</div>
<br id="man_mode_br">
<div class="row">
<div class="col-xs-12">
<label>
<input type="checkbox" id="man_mode" />
Manual Check Input Mode
</label>
<button class="btn btn-success btn-xs instr-ref">New Feature!</button>
</div>
</div>
<table class="table table-bordered table-hover table-responsive mrg">
<thead>
<tr>
<th>Par\Perf</th>
<th class="c">E (5)</th>
<th class="c">VG (4)</th>
<th class="c">G (3)</th>
<th class="c">A (2)</th>
<th class="c">BA (1)</th>
</tr>
</thead>
<tbody id="tbl1">
<tr>
<th>TK (30)</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>TD (30)</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>LI (10)</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>B (10)</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>C (20)</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table class="table table-bordered table-hover table-responsive mrg">
<thead>
<tr>
<th>Par\Perf</th>
<th class="c">E (5)</th>
<th class="c">VG (4)</th>
<th class="c">G (3)</th>
<th class="c">A (2)</th>
<th class="c">BA (1)</th>
</tr>
</thead>
<tbody id="tbl2">
<tr>
<th>TK (30)</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>TD (30)</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>LI (10)</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>B (10)</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>C (20)</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table class="table table-bordered table-hover table-responsive mrg">
<thead>
<tr>
<th>Cycle</th>
<th class="d">TK</th>
<th class="d">TD</th>
<th class="d">LI</th>
<th class="d">B</th>
<th class="d">C</th>
<th class="d">Total</th>
</tr>
</thead>
<tbody id="tbl3">
<tr>
<th>1 to 5</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>6 to 10</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>Total</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>Average</th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<button class="btn-reset reset mrg btn btn-primary btn-sm">Reset</button>
</form>
<h3 class="text-primary" id="instructions">Instructions</h3>
<ul class="text-left">
<li>Enter cycle ranges, eg. Cycle 1: 1 to 5 and Cycle 2: 6 to 10; then for each experiment enter marks out of 100.</li>
<li>Alternatively, enter average marks out of 100 for both the cycles.</li>
<li> <button class="btn btn-success btn-xs man-mode-ref">Manual Check Input Mode</button> - Click on the cells in the cycle table to check them and fill the cycle manually</li>
</ul>
</div>
</div>
<br>
<hr class="footer-line">
<div class="text-center">
Designed & Developed by: Sagar Pathare (TCET 2015-2019)<br>
Packaged and Maintained by: Gaurang Vishwakarma (TCET 2019-2023)<br>
<img src="./assets/images/tos-logo.png" alt="TCET Open Source Logo">
</div>
</div>
<div id="preload"></div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-97377225-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>