50 lines
1.2 KiB
HTML
50 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<title>Ecosio downloads</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
background-color: #eee;
|
||
|
|
font-family: Monaco, "Lucida Console", "Courier New", monospace;
|
||
|
|
}
|
||
|
|
img {
|
||
|
|
max-width: 33ch;
|
||
|
|
}
|
||
|
|
.header {
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
.cell {
|
||
|
|
padding: 5px;
|
||
|
|
text-align: center;
|
||
|
|
background-color: #ccc;
|
||
|
|
}
|
||
|
|
.content {
|
||
|
|
background-color: #fefefe;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<table>
|
||
|
|
<tr><td></td><td><h3>Available for download</h3></td><td><h3>System Errors</h3></td><td><h3>Data Issues</h3></td></tr>
|
||
|
|
|
||
|
|
{% for date in downloads.keys() %}
|
||
|
|
<tr>
|
||
|
|
<td class="cell left"> {{ date }} </td>
|
||
|
|
<td class="cell content">{{ downloads[date][0] }}</td>
|
||
|
|
<td class="cell content">{{ downloads[date][1] }}</td>
|
||
|
|
<td class="cell content">{{ downloads[date][2] }}</td>
|
||
|
|
</tr>
|
||
|
|
|
||
|
|
{% endfor %}
|
||
|
|
|
||
|
|
</table>
|
||
|
|
|
||
|
|
|
||
|
|
<br/><br/><br/>
|
||
|
|
<a href="{{ ('downloadaszip') }}">DOWNLOAD ALL AVAILABLE MESSAGES FOR ECOSIO</a>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|