Update table.html
Browse files- table.html +18 -0
table.html
CHANGED
@@ -3,11 +3,29 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
6 |
<title>Таблица данных</title>
|
|
|
|
|
7 |
<link href="https://unpkg.com/[email protected]/dist/css/tabulator.min.css" rel="stylesheet">
|
8 |
<script src="https://unpkg.com/[email protected]/dist/js/tabulator.min.js"></script>
|
9 |
</head>
|
10 |
<body>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
<div id="data-table"></div>
|
12 |
|
13 |
<script>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<link rel="icon" type="image/ico" href="https://huggingface.co/spaces/igs-img/stor/resolve/main/list.ico">
|
7 |
<title>Таблица данных</title>
|
8 |
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
9 |
+
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
10 |
<link href="https://unpkg.com/[email protected]/dist/css/tabulator.min.css" rel="stylesheet">
|
11 |
<script src="https://unpkg.com/[email protected]/dist/js/tabulator.min.js"></script>
|
12 |
</head>
|
13 |
<body>
|
14 |
+
|
15 |
+
<!-- Навигационная панель -->
|
16 |
+
<nav class="navbar navbar-light bg-light w-100">
|
17 |
+
<div class="container">
|
18 |
+
<a class="navbar-brand" href="/online">
|
19 |
+
<img src="https://huggingface.co/spaces/igs-img/stor/resolve/main/list.png" width="30" height="30" class="d-inline-block align-top" alt="">
|
20 |
+
MackorLab
|
21 |
+
</a>
|
22 |
+
<form class="form-inline">
|
23 |
+
<button id="st_onl" class="btn btn-outline-success" type="button">Онлайн</button>
|
24 |
+
<button id="st_set" class="btn btn-outline-success" type="button">Настройки</button>
|
25 |
+
<button id="st_plot" class="btn btn-success mr-2" type="button">Графики</button>
|
26 |
+
</form>
|
27 |
+
</div>
|
28 |
+
</nav>
|
29 |
<div id="data-table"></div>
|
30 |
|
31 |
<script>
|