Spaces:
Sleeping
Sleeping
File size: 669 Bytes
cdb7807 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Monitor</title>
</head>
<body>
<h1>Server Monitor</h1>
<h2>Uploaded Files</h2>
<ul>
{% for file in uploaded_files %}
<li>{{ file }}</li>
{% endfor %}
</ul>
<h2>Uploaded HTML Files</h2>
<ul>
{% for file in uploaded_html_files %}
<li>{{ file }}</li>
{% endfor %}
</ul>
<h2>Disk Space</h2>
<p>Total: {{ disk_space.total }}</p>
<p>Used: {{ disk_space.used }}</p>
<p>Free: {{ disk_space.free }}</p>
</body>
</html> |