diff --git a/app.py b/app.py index a65cb4c..2e143d6 100644 --- a/app.py +++ b/app.py @@ -285,7 +285,7 @@ def get_email_template(subject, message):

{message}

diff --git a/templates/add_device.html b/templates/add_device.html index 8fa255b..b0a8313 100644 --- a/templates/add_device.html +++ b/templates/add_device.html @@ -1,43 +1,90 @@ {% extends "base.html" %} {% block title %}Dodaj urządzenie - RouterOS Update{% endblock %} + +{% block extra_head %} + +{% endblock %} + {% block content %} -
-
-

Dodaj nowe urządzenie

-
- -
- - +
+
+
+ + +
+
+

Dodaj nowe urządzenie

+
+
+ + +
+ + + Wpisz przyjazną nazwę, np. „Mikrotik #1” lub „Router na u Kocura. +
+ + +
+ + + Adres IP lub domena urządzenia (np. mikrotik.moja-domena.pl). +
+ + +
+ + + Domyślnie 8728 (lub 8729 w przypadku SSL). +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + + + +
-
- - -
-
- - -
-
- - -
-
- - -
- -
- - -
- -
- - -
- - + +
{% endblock %} diff --git a/templates/anomalies.html b/templates/anomalies.html index 51ed81b..48377c8 100644 --- a/templates/anomalies.html +++ b/templates/anomalies.html @@ -1,27 +1,80 @@ {% extends "base.html" %} {% block title %}Wykryte anomalie{% endblock %} + +{% block extra_head %} + +{% endblock %} + {% block content %}
-

Wykryte anomalie

- - - - - - - - - - - {% for anomaly in anomalies %} - - - - - - - {% endfor %} - -
DataUrządzenieOpisStatus
{{ anomaly.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}{{ anomaly.device.name or anomaly.device.ip if anomaly.device }}{{ anomaly.description }}{{ 'Rozwiązana' if anomaly.resolved else 'Otwarta' }}
+
+
+

Wykryte anomalie

+
+
+ {% if anomalies and anomalies|length > 0 %} +
+ + + + + + + + + + + {% for anomaly in anomalies %} + + + + + + + {% endfor %} + +
DataUrządzenieOpisStatus
+ {{ anomaly.timestamp.strftime('%Y-%m-%d %H:%M:%S') }} + + {% if anomaly.device %} + {{ anomaly.device.name or anomaly.device.ip }} + {% else %} + Brak + {% endif %} + {{ anomaly.description }} + {% if anomaly.resolved %} + Rozwiązana + {% else %} + Otwarta + {% endif %} +
+
+ {% else %} +
+

Brak aktualnych anomalii.

+
+ {% endif %} +
+
{% endblock %} diff --git a/templates/base.html b/templates/base.html index f89f870..8284240 100644 --- a/templates/base.html +++ b/templates/base.html @@ -16,11 +16,6 @@ body.dark-mode .navbar { background-color: #333 !important; color: #ffffff; - /* --- - border-bottom: 1px solid #e0e0e0; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); - padding: 0.5rem 1rem; - --- */ } body.dark-mode .navbar .navbar-brand, body.dark-mode .navbar .nav-link { @@ -57,11 +52,11 @@ background-color: #f8f9fa; color: #212529; } - - - /* Alerty – pozostają bez zmian */ - .diff-add { color: green; } - .diff-rem { color: red; } + + /* Alerty – pozostają bez zmian */ + .diff-add { color: green; } + .diff-rem { color: red; } + body.dark-mode table { background-color: #1a1a1a; color: #cccccc; @@ -132,29 +127,19 @@ } /* ========== Tryb jasny (light-mode) ========== */ - /* --- Nawigacja (Navbar) --- */ body.light-mode .navbar { background-color: #dcdcdc !important; color: #333333; - /* --- - border-bottom: 1px solid #e0e0e0; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); - padding: 0.5rem 1rem; - --- */ } - /* --- Przyciski (dla niezalogowanych) --- */ - body.light-mode .navbar .btn-outline-primary:hover { background-color: #007bff; color: #ffffff; } - /* --- Stopka --- */ footer { background-color: #f8f9fa; color: #212529; } - /* --- Responsywność --- */ @media (max-width: 768px) { body.light-mode .navbar .nav-link { padding: 0.5rem; @@ -230,6 +215,25 @@
+ + +
+ {% with messages = get_flashed_messages(with_categories=True) %} + {% if messages %} + {% for category, message in messages %} + + {% if category == 'message' %} + {% set category = 'info' %} + {% endif %} + + {% endfor %} + {% endif %} + {% endwith %} +
+
{% block content %}{% endblock %}
diff --git a/templates/change_password.html b/templates/change_password.html index 4a76386..524e8d1 100644 --- a/templates/change_password.html +++ b/templates/change_password.html @@ -1,24 +1,71 @@ {% extends "base.html" %} -{% block title %}Reset hasła - RouterOS Update{% endblock %} +{% block title %}Zmiana hasła - RouterOS Update{% endblock %} + +{% block extra_head %} + +{% endblock %} + {% block content %} -
-
-

Zmiana hasła

-
-
- - +
+
+
+ +
+
+

Zmiana hasła

+
+
+ +
+ + +
+
+ + +
+
+ + +
+ + +
-
- - -
-
- - -
- - + +
{% endblock %} diff --git a/templates/dashboard.html b/templates/dashboard.html index 17e0510..049560a 100644 --- a/templates/dashboard.html +++ b/templates/dashboard.html @@ -76,24 +76,32 @@
- -
-
-
Ostatnie zdarzenia
-
- - {% if recent_logs %} + +
+
+
Ostatnie zdarzenia
+
+
+ {% if recent_logs %}
    {% for log in recent_logs %} -
  • - {{ log.timestamp.strftime('%Y-%m-%d %H:%M:%S') }} - – {{ log.message|truncate(100) }} -
  • +
  • + +
    {{ log.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}
    + +
    + {{ log.message|truncate(100) }} +
    +
  • {% endfor %}
- {% else %} -

Brak ostatnich zdarzeń.

- {% endif %} + {% else %} +
+ Brak ostatnich zdarzeń. +
+ {% endif %} +
+
diff --git a/templates/device_detail.html b/templates/device_detail.html index 1c11a77..0725723 100644 --- a/templates/device_detail.html +++ b/templates/device_detail.html @@ -1,89 +1,117 @@ {% extends "base.html" %} {% block title %}Szczegóły urządzenia - RouterOS Update{% endblock %} -{% block extra_head %} - -{% endblock %} -{% block content %} -
-
-

Szczegóły urządzenia

- -
- +{% block extra_head %} + +{% endblock %} + +{% block content %} +
+ + +

Szczegóły urządzenia

+ + +
-
+
Dane urządzenia

Adres IP: {{ device.ip }}

Port: {{ device.port }}

-

Ostatnie sprawdzenie: - {% if device.last_check %}{{ device.last_check.strftime('%Y-%m-%d %H:%M:%S') }}{% else %}Brak{% endif %} +

+ Ostatnie sprawdzenie: + {% if device.last_check %} + {{ device.last_check.strftime('%Y-%m-%d %H:%M:%S') }} + {% else %} + Brak + {% endif %}

System: {{ device.current_version or 'Brak' }}
Firmware: {{ device.current_firmware or 'N/A' }}
- Upgrade Firmware: {{ device.upgrade_firmware or 'N/A' }} + Upgrade Firmware: {{ device.upgrade_firmware or 'N/A' }}

Branch aktualizacji: {{ device.branch|capitalize }}

- + +
- +
+
-
+
Informacje o systemie
@@ -109,8 +138,14 @@
{% else %}

Wersja systemu: {{ resource.version or 'Brak danych' }}

-

Czas pracy: {{ resource.uptime or 'Brak danych' }}

-

Obciążenie CPU: {{ resource['cpu-load'] or 'Brak' }}%

+

Czas pracy (uptime): {{ resource.uptime or 'Brak danych' }}

+

Obciążenie CPU: + {% if resource['cpu-load'] is defined %} + {{ resource['cpu-load'] }}% + {% else %} + Brak danych + {% endif %} +

Pamięć: {% if resource['free-memory'] and resource['total-memory'] %} @@ -119,18 +154,23 @@ Brak danych {% endif %}

-

Wolne miejsce na dysku: {{ resource['free-hdd-space'] or 'Brak danych' }}

+

+ Wolne miejsce na dysku: + {% if resource['free-hdd-space'] %} + {{ resource['free-hdd-space'] }} + {% else %} + Brak danych + {% endif %} +

{% endif %}
- -
-
- Logi urządzenia -
+ +
+
Logi urządzenia
{% if device.last_log %}
@@ -142,32 +182,40 @@
- -
-
-
- -
-
- -
- Wymuś sprawdzenie -
- + +
+ +
+ +
+ +
+ +
+ + Wymuś sprawdzenie + + Powrót
- + +
+
+ Urządzenie wymaga restartu po aktualizacji firmware. +
+ +
+ +

Aktualizacja systemu rozpoczęta...

-

300 sekund

+

240 sekund

- - + +

Restart urządzenia...

@@ -175,92 +223,85 @@

120 sekund

- - - -
{% endblock %} diff --git a/templates/devices.html b/templates/devices.html index 55b62c5..71eb295 100644 --- a/templates/devices.html +++ b/templates/devices.html @@ -2,116 +2,178 @@ {% block title %}Moje urządzenia - RouterOS Update{% endblock %} {% block extra_head %} - +/* Nagłówek karty w trybie ciemnym */ +body.dark-mode .card .card-header.bg-light { + background-color: #333 !important; + border-bottom: 1px solid #444; +} + +/* Tabela w trybie ciemnym */ +body.dark-mode .table thead.table-dark { + background-color: #2a2a2a !important; + color: #ccc !important; + border-color: #444 !important; +} +body.dark-mode .table-hover tbody tr:hover { + background-color: #2f2f2f; +} +body.dark-mode .table-bordered > :not(caption) > * > * { + border-color: #444 !important; +} + +/* Styl paska postępu w overlay */ +.progress-container { + width: 50%; + margin: 20px auto; + background: #444; + border-radius: 5px; + overflow: hidden; +} +.progress-bar { + width: 0%; + height: 30px; + background: #4caf50; + border-radius: 5px; + transition: width 0.5s linear; +} +#mass-system-update-overlay, +#mass-firmware-update-overlay { + display: none; + position: fixed; + top: 0; left: 0; + width: 100%; height: 100%; + background: rgba(0,0,0,0.7); + z-index: 1000; + color: white; + text-align: center; + padding-top: 200px; +} + +/* Prompt do firmware w overlay */ +#mass-firmware-reboot-prompt { + display:none; + position:fixed; + top:0; left:0; + width:100%; height:100%; + background:rgba(0,0,0,0.7); + z-index:1100; + color:white; + text-align:center; + padding-top:200px; +} + {% endblock %} - - {% block content %} -

Moje urządzenia

-
-
- +
+

Moje urządzenia

+ + +
+
+
Lista urządzeń
+ +
+
+ +
+
+ + + +
+ +
+ + + + + + + + + + + + + {% for device in devices %} + + + + + + + + + {% else %} + + + + {% endfor %} + +
Nazwa / Adres IPOstatnie sprawdzenieStatusSystem / FirmwareAkcje
+ + + {% if device.name %} + {{ device.name }} +
{{ device.ip }} + {% else %} + {{ device.ip }} + {% endif %} +
+ {{ device.last_check.strftime('%Y-%m-%d %H:%M:%S') if device.last_check else 'Brak' }} + + {% if device.update_required or (device.current_firmware and device.upgrade_firmware and device.current_firmware != device.upgrade_firmware) %} + {% if device.update_required and (device.current_firmware and device.upgrade_firmware and device.current_firmware != device.upgrade_firmware) %} + Wymaga aktualizacji (system i firmware) + {% elif device.update_required %} + Wymaga aktualizacji (system) + {% else %} + Wymaga aktualizacji (firmware) + {% endif %} + {% else %} + Aktualny + {% endif %} + + + System: {{ device.current_version or 'Brak' }}
+ Firmware: {{ device.current_firmware or 'Brak' }}
+ Upgrade FW: {{ device.upgrade_firmware or 'N/A' }} +
+
+ + + + + +
Brak dodanych urządzeń.
+
+
+
- -
-
- - - -
- - - - - - - - - - - - - {% for device in devices %} - - - - - - - - - {% else %} - - - - {% endfor %} - -
Nazwa / Adres IPOstatnie sprawdzenieStatusSystem / FirmwareAkcje
- - - {% if device.name %} - {{ device.name }} | - {{ device.ip }} - {% else %} - {{ device.ip }} - {% endif %} - {{ device.last_check.strftime('%Y-%m-%d %H:%M:%S') if device.last_check else 'Brak' }} - {% if device.update_required or (device.current_firmware and device.upgrade_firmware and device.current_firmware != device.upgrade_firmware) %} - {% if device.update_required and (device.current_firmware and device.upgrade_firmware and device.current_firmware != device.upgrade_firmware) %} - Wymaga aktualizacji (system i firmware) - {% elif device.update_required %} - Wymaga aktualizacji (system) - {% else %} - Wymaga aktualizacji (firmware) - {% endif %} - {% else %} - Aktualny - {% endif %} - - - System: {{ device.current_version or 'Brak' }}
- Firmware: {{ device.current_firmware or 'Brak' }}
- Upgrade Firmware: {{ device.upgrade_firmware or 'N/A' }} -
-
- - - -
Brak dodanych urządzeń.
-
@@ -132,7 +194,7 @@
-