-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshowall.html
50 lines (46 loc) · 1.07 KB
/
showall.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
<!DOCTYPE html>
{% autoescape true %}
<html>
<head>
<link href="css/bootstrap.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Complete List</title>
</head>
<body>
<div class="container">
<table class="table table-hover">
<tr>
<th>Registration Id
<th>Name
<th>Contact Number
<th>Email
<th>Total Fee
<th>Paid Fee
<th>Remaining Fee
<th>Events
<th>Workshops
<th>Tutorials
<th>Volunteer
</tr>
{% for participant in participants %}
<tr>
<td>{{ participant.regid }}
<td>{{ participant.name }}
<td>{{ participant.contactnum }}
<td>{{ participant.email }}
<td>{{ participant.totalfee }}
<td>{{ participant.paid }}
<td>{{ participant.remaining }}
<td>{{ participant.EVENTS }}
<td>{{ participant.WORKSHOPS }}
<td>{{ participant.TUTORIALS }}
<td>{{ participant.volunteer }}
</tr>
{% endfor %}
</table>
<hr>
<button>Export</button><small>(Does Nothing For Now)</small>
</div>
</body>
</html>
{% endautoescape %}