-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_view_fee.html
56 lines (46 loc) · 1.2 KB
/
admin_view_fee.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
{% extends 'school/adminbase.html' %}
{% block content %}
<head>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<style media="screen">
a:link {
text-decoration: none;
}
h6 {
text-align: center;
}
.row {
margin: 100px;
}
</style>
</head>
<div class="container">
<div class="row">
<div class="panel panel-primary">
<div class="panel-heading">
<h6 class="panel-title">GPA of class {{cl}} </h6>
</div>
<table class="table table-hover table-striped table-bordered" id="dev-table">
<thead>
<tr>
<th>Student Name</th>
<th>Roll</th>
<th>Contact</th>
<th>GPA</th>
</tr>
</thead>
{%for f in feedetails %}
<tr>
<td>{{f.get_name}}</td>
<td>{{f.roll}}</td>
<td>{{f.mobile}}</td>
<td>{{f.fee}}</td>
</tr>
{%endfor%}
</table>
</div>
</div>
</div>
{% endblock content %}