laas/templates/filemanager.html
2025-02-22 22:37:11 +01:00

27 lines
No EOL
662 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LAAS - Filemanager</title>
<link rel="stylesheet" href="/static/style.css">
<meta name="darkreader-lock">
</head>
<body>
<h1>LAAS Filemanager!!</h1>
<table>
<thead>
<tr>
<th>Filename</th>
<th>Size</th>
</tr>
</thead>
{% for file in files %}
<tr>
<td><a href="/files/{{ path }}/{{ file[0] }}">{{ file[0] }}</a></td>
<td>{{ file[1] }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>