DmitrMakeev commited on
Commit
625126d
·
verified ·
1 Parent(s): fec90c6

Update monitor.html

Browse files
Files changed (1) hide show
  1. monitor.html +5 -5
monitor.html CHANGED
@@ -3,23 +3,23 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Server Monitor</title>
7
  </head>
8
  <body>
9
- <h1>Server Monitor</h1>
10
- <h2>Uploaded Files</h2>
11
  <ul>
12
  {% for file in uploaded_files %}
13
  <li>{{ file }}</li>
14
  {% endfor %}
15
  </ul>
16
- <h2>Uploaded HTML Files</h2>
17
  <ul>
18
  {% for file in uploaded_html_files %}
19
  <li>{{ file }}</li>
20
  {% endfor %}
21
  </ul>
22
- <h2>Disk Space</h2>
23
  <p>Total: {{ disk_space.total }}</p>
24
  <p>Used: {{ disk_space.used }}</p>
25
  <p>Free: {{ disk_space.free }}</p>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Монитор сервера</title>
7
  </head>
8
  <body>
9
+ <h1>Монитор сервера</h1>
10
+ <h2>Мелиа файлы</h2>
11
  <ul>
12
  {% for file in uploaded_files %}
13
  <li>{{ file }}</li>
14
  {% endfor %}
15
  </ul>
16
+ <h2>HTML страницы</h2>
17
  <ul>
18
  {% for file in uploaded_html_files %}
19
  <li>{{ file }}</li>
20
  {% endfor %}
21
  </ul>
22
+ <h2>Диск сервера</h2>
23
  <p>Total: {{ disk_space.total }}</p>
24
  <p>Used: {{ disk_space.used }}</p>
25
  <p>Free: {{ disk_space.free }}</p>