fileHost/templates/gallery.html
2018-05-22 09:42:02 -04:00

23 lines
324 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ user }}'s gallery</title>
</head>
<body>
<pre>
<table>
<tr>
<th>File</th>
<th>Date Uploaded</th>
</tr>
{% for file, date in uploads %}
<tr>
<td><a href="{{ upload_url + file }}">{{ file }}</a></td>
<td>{{ date }}</td>
</tr>
{% endfor %}
</table>
</pre>
</body>
</html>