-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroup.html
More file actions
64 lines (62 loc) · 2.49 KB
/
group.html
File metadata and controls
64 lines (62 loc) · 2.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery.min.js"></script>
<script src="js/jquery.stickytableheaders.min.js"></script>
<title>Group</title>
<meta charset="utf-8">
</head>
<body>
<div class="app">
<div class="navigation">
<div class="header">
<a class="href-groups" href="students.html"><p class="current-pos bold" id="current-univer">BST</p> <p
class="current-pos light">University</p></a><span class="arrow"></span><a class="href-groups"
href="groups.html"><p
class="current-pos bold" id="current-faculty">EIS</p> <p class="current-pos light">Faculty</p>
</a><span
class="arrow"></span>
<p class="current-pos bold" id="current-group">NULL</p> <p class="current-pos light">Group</p>
</div>
<div class="info">
<div class="info-right">
<div class="graduate-block">
<div class="date start">
<p class="big-year start" id="start-year">NULL</p>
<p class="info-year" id="end-year">start</p>
</div>
<div class="year-separator"></div>
<div class="date end">
<p class="big-year end">NULL</p>
<p class="info-year">graduate</p>
</div>
</div>
</div>
<div class="controls-info">
<button class="button small add" id="add-btn"><span class="icon add-icon"></span>Add student</button>
<p class="some-info">AVG mark: 
<p class="some-info bold" id="avg-mark">NULL</p></p>    
<p class="some-info">Number of students: 
<p class="some-info bold" id="num-stud">NULL</p></p>
</div>
</div>
</div>
<div class="table-holder">
<table class="table-gr">
<thead>
<tr class="tr-gr">
<th class="st-th-1">Name</th>
<th class="st-th-2">AVG Marks</th>
</tr>
</thead>
<tbody id="stud-body">
</tbody>
</table>
</div>
</div>
<script src="js/shared.js"></script>
<script src="js/group.js"></script>
</body>
</html>