-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaved.html
39 lines (32 loc) · 1.07 KB
/
saved.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
<html>
<head>
<title>Saved Sessions</title>
<script src="https://ajax.cloudflare.com/cdn-cgi/scripts/a2bd7673/cloudflare-static/rocket-loader.min.js" data-cf-settings="655e58efa2fda60e82186aff-|49" defer=""></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
</head>
<body>
<div align="center">
<div class="panel panel-default">
<div class="panel-heading" ><h3>Historic Sessions</h3></div>
<div class="panel-body">
<a href='/' class='btn btn-success' role='button'>Pick</a>
</div>
<div class="panel-body" style="width: 20%;">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Saved</th>
</tr>
</thead>
{% for historic_entry in range(1, highest_saved) %}
<tr>
<td align="left"><a href="/monitor/{{ escape(str(historic_entry)) }}">{{ escape(str(historic_entry)) }}</a><br></td>
</tr>
{% end %}
</table>
</div>
</div>
</div>
</body>
</html>