21 lines
292 B
HTML
21 lines
292 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Manage your uploads</title>
|
|
</head>
|
|
<body>
|
|
<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>
|
|
</body>
|
|
</html>
|