-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow_attendance.html
More file actions
67 lines (48 loc) · 849 Bytes
/
show_attendance.html
File metadata and controls
67 lines (48 loc) · 849 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<style>
.center {
margin-left: auto;
margin-right: auto;
}
h2
{position: absolute;
left: 1200px;
top: 0px;
font-size: 2em}
</style>
<body>
<table border="1" cellpadding="5" cellspacing="5" style="float:left">
<h1>Present</h1>
<tr>
<th>NAME</th>
<th>REG NO</th>
</tr>
{% for row in data %}
<tr>
{% for d in row %}
<td>{{d}}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
<table border="1" cellpadding="5" cellspacing="5" style="float:right">
<tr>
<th>NAME</th>
<th>REG NO</th>
</tr>
<h2>Absent</h2>
{% for row in data1 %}
<tr>
{% for d in row %}
<td>{{d}}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
</body>
</html>