diff --git a/static/templates/admin/organisation.html b/static/templates/admin/organisation.html
new file mode 100644
index 0000000..432609b
--- /dev/null
+++ b/static/templates/admin/organisation.html
@@ -0,0 +1,259 @@
+
+
+
+
+
+
+ {{Name}} {{Surname}}
+
+
+
+
+
+ Аргус
+ / {{Organisation}}
+
+
+
+
+
+
+
+
+
+
+ {{#if ifDBError}}
+
+
+
+
Ошибка
+
Не удалось получить данные из БД
+
+
+
+ {{/if}}
+
+
+
+ Панель управления
+
+
+
+
+
+
+
+
+
+ Данные организации
+ Здесь вы можете управлять данными вашей организации.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/static/templates/admin/user.html b/static/templates/admin/user.html
index a5af5ea..c6cd3f9 100644
--- a/static/templates/admin/user.html
+++ b/static/templates/admin/user.html
@@ -244,11 +244,9 @@
closeButton.style.display = "none";
deleteConfirmation.style.display = "flex";
mark.style.display = "none";
- // Собираем данные из инпутов с классом "device" в массив
const deviceInputs = document.querySelectorAll('.device-serial:checked');
const devices = Array.from(deviceInputs).map(input => input.value);
- // Собираем остальные данные из формы
const formData = {
name: document.getElementById('user-name').value,
surname: document.getElementById('user-surname').value,
@@ -258,7 +256,6 @@
EditTransport: document.getElementById('device-edit').checked,
DeleteTransport: document.getElementById('device-delete').checked,
Update: document.getElementById('update-do').checked,
- // Другие данные, которые необходимо включить
};
// Объединяем все данные в один объект
diff --git a/static/templates/devices/groups.html b/static/templates/devices/groups.html
new file mode 100644
index 0000000..ca8da7b
--- /dev/null
+++ b/static/templates/devices/groups.html
@@ -0,0 +1,393 @@
+
+
+
+
+
+
+ {{Name}} {{Surname}}
+
+
+
+
+
+ Аргус
+ / {{Organisation}}
+
+
+
+
+
+
+
+
+
+
+ {{#if ifDBError}}
+
+
+
+
Ошибка
+
Не удалось получить данные из БД
+
+
+
+ {{/if}}
+
+
+
+ Устройства
+
+
+
+
+
+
+
+
+
+ Изменить данные группы
+ Здесь вы можете управлять названиями групп и удалять их.
+
+
+
+
+
+
+
+
+
+ Добавить новую группу
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Удаление группы
+
Вы уверены что хотите удалить ?
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/static/templates/devices/index.html b/static/templates/devices/index.html
index ae89aee..a16d633 100644
--- a/static/templates/devices/index.html
+++ b/static/templates/devices/index.html
@@ -69,6 +69,7 @@