-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrosters.html
executable file
·66 lines (58 loc) · 1.61 KB
/
rosters.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
<!DOCTYPE html>
<!--
Author: Corneel den Hartogh
Course: Heuristics
Description: Provide dropdown + table elements + explainer
-->
<html>
<head>
<meta charset="utf-8">
<meta content="utf-8" http-equiv="encoding">
<link rel="stylesheet" href="rosters.css">
</head>
<body>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="roster.js"></script>
<div>
<label class="roster">
<select id="rosters" name="select" class="main-form">
</select>
</label>
<br>
<select id="classrooms" name="select" class="main-form">
<option value="">Select Room</option>
</select>
<select id="subjects" name="select" class="main-form">
<option value="">Select Subject</option>
</select>
<select id="students" name="select" class="main-form">
<option value="">Select Student</option>
</select>
<select id="issues" name="select" class="main-form">
<option value="">Select Issue</option>
</select>
</div>
<div>
<table class="table" id="table"> </table>
</div>
<div>
<select id="studentList" name="select" class="main-form">
<option value="">Students in activity</option>
</select>
</div>
<div>
<p id ="explainer">
Notes:<br>
- Click on slot to see students in activity<br><br>
Depending on the object choosen, a slot can get a different background-color<br><br>
Room:<br>
- More students than places --> Red<br><br>
Student:<br>
- More than one activity in a slot --> Red<br><br>
Subject:<br>
- Conflicting actvities on the same day --> Red<br>
- Activites sub-optimally spread over the week --> Light Red<br>
- Activities optimally spread --> Green<br>
</div>
</body>
</html>