-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow_all.html
More file actions
50 lines (46 loc) · 1.67 KB
/
show_all.html
File metadata and controls
50 lines (46 loc) · 1.67 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
<html>
<head>
<head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"><!-- Sets UTF --><!-- Title in address bar -->
<title>Admin</title>
<script src="https://www.luxiagov.org/assets/main.js"></script>
<script src="assets/main.py"></script>
<!-- Sets viewing --><meta name="viewport" content="width=device-width, initial-scale=1" /><!-- Sets stylesheets -->
<link href="assets/css/main.css" rel="stylesheet" /><!-- Sets favicon in address bar -->
<link href="https://vignette.wikia.nocookie.net/micronations/images/4/42/Luxia_Flag.png/revision/latest?cb=20171227172003" rel="icon" type="image/x-icon" />
<link href="https://vignette.wikia.nocookie.net/micronations/images/4/42/Luxia_Flag.png/revision/latest?cb=20171227172003" rel="shortcut icon" type="image/x-icon" /><!-- Google AdSense Initiation --><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
</head>
<body>
<style>
/* Highlight selection for most browsers */
::selection {
color: white;
background: blue;
}
/* Highlight selection for mozilla */
::-moz-selection {
color: white;
background: blue;
}
</style>
<h1>Admin: Show All</h1>
<h2>The list of profiles are below</h2>
<table>
<tr>
<th> First Name </th>
<th> Last Name </th>
<th> Age </th>
<th> Email </th>
<th> Username </th>
</tr>
{% for profile in allprofiles['profiles'] %}
<tr>
<td> {{profile['name']}}</td>
<td> {{profile['lname']}}</td>
<td> {{profile['age']}}</td>
<td> {{profile['mail']}}</td>
<td> {{profile['cusername']}}<button>Delete</button></td>
</tr>
{% endfor %}
</table>
</body>
</html>