blob: c93bfaca3bd740dba9db382c5b7d1e3faa06ad3a (
plain) (
blame)
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
|
<html>
<head>
<title> Map of a day </title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
<link rel="icon" type="image/png" href="{{ url_for('static', filename='icon.png') }}">
<link rel="apple-touch-icon" type="image/png" href="{{ url_for('static', filename='icon.png') }}">
</head>
<body>
<table class="maps">
<thead>
<th> Day </th>
<th> Map </th>
<th> Map </th>
<tbody>
{% for e in maps %}
<tr>
<td class="day">{{ e[0] }}</td>
<td class="map">{{ e[1] }}</td>
<td class="map">{{ e[2] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>
|