-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (50 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Grades</title>
<!-- Bootstrap -->
<link href="ext/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="ext/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<div id="grades">
<h1>My Grades</h1>
<p class="lead">Here you can see some grades!</p>
<!-- list of students, if appropriate entitlement is available -->
<form id="studentListForm" class="form form-horizontal" style="display: none;">
<label>Grades for student <select id="studentList" name="studentList"></select></label>
</form>
<table id="gradesTable" class="table table-striped table-bordered">
<thead>
<tr><th>Course</th><th>Grade</th></tr>
</thead>
<tbody id="gradeList"></tbody>
</table>
</div> <!-- /applications -->
</div> <!-- /container -->
<script id="gradeListTemplate" type="text/x-jsrender">
{{if grade < 6}}
<tr class="error">
{{else grade >= 8}}
<tr class="success">
{{else}}
<tr>
{{/if}}
<td><em>{{:course}}</em></td>
<td><span>{{:grade}}</span></td>
</tr>
</script>
<script id="studentListTemplate" type="text/x-jsrender">
<option value="{{:id}}">{{:id}}</option>
</script>
<script src="ext/js/jquery.js"></script>
<script src="ext/js/jsrender.js"></script>
<script src="ext/js/jso.js"></script>
<script src="ext/bootstrap/js/bootstrap.min.js"></script>
<script src="config/config.js"></script>
<script src="js/grades.js"></script>
</body>
</html>