Add endpoint telezab/users Add endpoint telezab/users/add Add endpoint telezab/users/del Add endpoint telezab/users/get Add endpoint telezab/regions Add endpoint telezab/regions/add Add endpoint telezab/regions/del Add endpoint telezab/regions/get Rework Active Triggers button now don't need subscription Rework Help button Add option to change what Notification type you want reciving All or Disaster Only Rework Settings button removed some misc buttons Rework Registration mechanism now using POST JSON users/add Rework formating of Zabbix Triggers for Active triggers and Notification from Zabbix
38 lines
1.6 KiB
HTML
38 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Сотрудники</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.min.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/users.css') }}">
|
|
<script src="{{ url_for('static', filename='js/jquery-3.6.0.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/bootstrap.bundle.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/users.js') }}"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container mt-4">
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<ul id="user-list" class="list-group">
|
|
<!-- Список сотрудников будет вставлен сюда -->
|
|
</ul>
|
|
</div>
|
|
<div class="col-md-8">
|
|
<div id="user-info" class="d-none">
|
|
<h3 id="user-name"></h3>
|
|
<h5>Подписки на регионы</h5>
|
|
<ul id="user-regions" class="list-group">
|
|
<!-- Подписки на регионы будут вставлены сюда -->
|
|
</ul>
|
|
<h5>Действия</h5>
|
|
<div id="user-events" class="overflow-auto" style="max-height: 300px;">
|
|
<!-- Действия будут вставлены сюда -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|