fileHost/templates/manage_uploads.html
2018-04-15 00:08:18 -04:00

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>