2018-04-14 21:29:21 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Manage your uploads</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-04-15 00:08:18 -04:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>File</th>
|
|
|
|
<th>Date Uploaded</th>
|
|
|
|
</tr>
|
|
|
|
{% for file, date in uploads %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ upload_url + file }}</td>
|
|
|
|
<td>{{ date|string }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
2018-04-14 21:29:21 -04:00
|
|
|
</body>
|
|
|
|
</html>
|