Страница дисков была переведена на единое меню

Этот коммит содержится в:
Виктор
2026-05-07 10:19:56 +09:00
родитель 6a6fd7bb83
Коммит ab9d51611a
+9 -6
Просмотреть файл
@@ -7,17 +7,18 @@
<link rel="stylesheet" href="/static/app.css"> <link rel="stylesheet" href="/static/app.css">
</head> </head>
<body> <body>
<div class="shell"> <div class="v-layout">
<header class="topbar"> {% include "_sidebar.html" %}
<main class="v-main">
<header class="v-topbar">
<div> <div>
<div class="brand">Диски</div> <div class="v-title">Диски</div>
<div class="muted">Готовые образы установленных систем: .img / .raw / .qcow2 / .img.xz, а также архивы .zip / .tar.gz / .tgz</div> <div class="v-subtitle">Готовые образы установленных систем: .img / .raw / .qcow2 / .img.xz, а также архивы .zip / .tar.gz / .tgz</div>
</div> </div>
<div class="top-meta"> <div class="top-meta">
<span>user: {{ user }}</span> <span>user: {{ user }}</span>
<a class="link-pill" href="/">← Дашборд</a> <a class="link-pill" href="/">← Дашборд</a>
<a class="link-pill" href="/iso">ISO</a>
<a class="link-pill accent" href="/vm/create">+ Создать VM</a>
<form method="post" action="/logout" class="logout-form"><button class="ghost">Выйти</button></form> <form method="post" action="/logout" class="logout-form"><button class="ghost">Выйти</button></form>
</div> </div>
</header> </header>
@@ -103,6 +104,7 @@
</tbody> </tbody>
</table> </table>
</section> </section>
</main>
</div> </div>
<script> <script>
@@ -307,5 +309,6 @@
xhr.send(data); xhr.send(data);
}); });
</script> </script>
<script src="/static/panel.js" defer></script>
</body> </body>
</html> </html>