-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminhpage.html
More file actions
91 lines (82 loc) · 2.06 KB
/
adminhpage.html
File metadata and controls
91 lines (82 loc) · 2.06 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
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
<HTML>
<HEAD>
<TITLE> Principal Login</TITLE>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</HEAD>
<BODY>
<DIV class="container">
<DIV class="row">
<CENTER>
<H1>Welcome {{name}}</H1>
<DIV class="col-sm-6">
<TABLE class="table table-striped">
<H3> Subject Wise Ranking </H3>
<THEAD>
<TR>
<TH> Subject ID </TH>
<TH> Average %</TH>
</TR>
</THEAD>
<TBODY>
{% for row in data[2] %}
<TR>
<TD> {{row[0]}} </TD>
<TD> {{row[1]}}%</TD>
</TR>
{% endfor %}
</TBODY>
</TABLE>
</DIV>
<DIV class="col-sm-6">
<TABLE class="table table-striped" style="height:15%">
<H3> Examination Toppers </H3>
<THEAD>
<TR>
<TH> Student ID </TH>
<TH> Average %</TH>
</TR>
</THEAD>
<TBODY>
{% for row in data[1] %}
<TR>
<TD> {{row[0]}} </TD>
<TD> {{row[1]}}%</TD>
</TR>
{% endfor %}
</TBODY>
</TABLE>
<TABLE class="table table-striped" style="height:15%;">
<H3> Degree Wise Faculties </H3>
<THEAD>
<TR>
<TH> Highest Degree </TH>
<TH> Number of Faculties </TH>
</TR>
</THEAD>
<TBODY>
{% for row in data[3] %}
<TR>
<TD> {{row[0]}} </TD>
<TD> {{row[1]}}</TD>
</TR>
{% endfor %}
</TBODY>
</TABLE>
<TABLE class="table table-striped" style="height:15%;">
<H3>Links</H3>
<TR><TD><A href="/studentadmission">New Admission</A></TD></TR>
<BR>
<TR><TD><A href="/deletestudent">Student Deletion</A></TD></TR>
<BR>
<TR><TD><A href="/updatemarks">Mark Updation</A></TD></TR>
</TABLE>
</DIV>
</CENTER>
</DIV>
</DIV>
</BODY>
</HTML>