e2e03054ac
Header bar dropped from all pages; brand, system stats (#sys-stats) and clock (#clock) now live in the 22px footer next to the version. .layout fills the full height minus the footer. ensureFooter runs before startClock/refreshStats so the moved elements exist when populated. VERSION 0.0.136. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>CoRE.Vision — Камеры</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body data-page="cams">
|
|
<div class="layout">
|
|
<aside>
|
|
<a class="nav-item" href="/" data-nav="live"><span class="ico">▦</span>Live view</a>
|
|
<a class="nav-item" href="/archive" data-nav="archive"><span class="ico">🗄</span>Архив</a>
|
|
<a class="nav-item active" href="/cams" data-nav="cams"><span class="ico">🎥</span>Камеры</a>
|
|
<div class="aside-spacer"></div>
|
|
<a class="nav-item" href="/settings" data-nav="settings"><span class="ico">⚙</span>Настройки</a>
|
|
</aside>
|
|
|
|
<main class="settings-main">
|
|
<div class="wrap">
|
|
<div class="card">
|
|
<div class="card-head">
|
|
<h2>Камеры — 64 слота</h2>
|
|
<button id="add-cam">+ Добавить камеру</button>
|
|
</div>
|
|
<table class="cams">
|
|
<thead>
|
|
<tr><th style="width:48px">ID</th><th>Камера</th><th>IP</th><th>Потоки</th><th>Статус</th><th></th></tr>
|
|
</thead>
|
|
<tbody id="cam-rows"></tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<script src="/static/app.js"></script>
|
|
</body>
|
|
</html>
|