python-api-server/index.html
2023-04-13 11:03:56 +02:00

19 lines
395 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>File List</title>
</head>
<body>
<h1>File List</h1>
{% if files %}
<ul>
{% for file in files %}
<li><a href="{{ url_for('download', filename=file.name) }}">{{ file.name }} ({{ file.size }} bytes)</a></li>
{% endfor %}
</ul>
{% else %}
<p>No files found.</p>
{% endif %}
</body>
</html>