2019-10-06 18:11:48 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Saddle - Gallery</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/saddle.css">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.8">
|
|
|
|
<meta name="description" content="A file upload service.">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2019-10-08 16:25:02 -04:00
|
|
|
{% include 'header.html' %}
|
2019-10-06 18:11:48 -04:00
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<section>
|
|
|
|
<table>
|
2023-04-15 18:52:45 -04:00
|
|
|
<tr>
|
|
|
|
<th>Upload Date</th>
|
|
|
|
<th>Filename</th>
|
|
|
|
</tr>
|
2019-10-06 18:11:48 -04:00
|
|
|
{% for upload in uploads %}
|
|
|
|
<tr>
|
2023-04-15 18:52:45 -04:00
|
|
|
<td>{{ upload['upload_date'].strftime('%Y-%m-%d') }}</td>
|
2019-10-06 18:11:48 -04:00
|
|
|
<td><a href="{{ upload_url + upload['filename'] }}">{{ upload['filename'] }}</a></td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|