diff --git a/app.py b/app.py index 9d142f6..cb4c236 100644 --- a/app.py +++ b/app.py @@ -691,6 +691,19 @@ def get_data_folder_size(): pass return total_size +@app.template_global() +def bootstrap_alert_category(cat): + mapping = { + "error": "danger", + "fail": "danger", + "warn": "warning", + "warning": "warning", + "ok": "success", + "success": "success", + "info": "info" + } + return mapping.get(cat.lower(), "info") + ############################################################################### # ROUTES ############################################################################### diff --git a/templates/add_router.html b/templates/add_router.html index dab98c0..761f501 100644 --- a/templates/add_router.html +++ b/templates/add_router.html @@ -1,9 +1,9 @@ {% extends "base.html" %} {% block content %} -
-
-
-

Dodaj nowe urządzenie

+
+
+
+

Dodaj nowe urządzenie

@@ -24,18 +24,16 @@
- - +
+ Wklej wraz z -----BEGIN RSA PRIVATE KEY----- i -----END RSA PRIVATE KEY-----. Jeśli pusty – użyje klucza globalnego. +

- Jeśli podajesz klucz SSH lub zdefiniowany jest klucz globalny, to logowanie hasłem jest nieaktywne. - + Jeśli jest klucz SSH lub klucz globalny, hasło może być ignorowane. +
- +
diff --git a/templates/advanced_schedule.html b/templates/advanced_schedule.html index 9daa5dc..fa9a7c7 100644 --- a/templates/advanced_schedule.html +++ b/templates/advanced_schedule.html @@ -1,52 +1,61 @@ {% extends "base.html" %} {% block content %} -
-
-
-

Zaawansowane ustawienia harmonogramu

+
+
+
+

Zaawansowane ustawienia harmonogramu

-
- - Usuwanie danych starszych niż ustawione w progu - -
-
- - -
- cron + + Usuwanie danych starszych niż ustawione w progu. + +
+
+ + +
+ +
+
-
Np. 0 */12 * * * – co 12 godzin
+ Np. 0 */12 * * * – co 12 godzin
+
- cron +
-
Np. 15 2 * * * – codziennie o 2:15
+ Np. 15 2 * * * – codziennie o 2:15
+
- +
-
Np. 0 */12 * * * – co 12 godzin
+ Np. 0 */12 * * * – co 12 godzin
+
+
+ +
diff --git a/templates/all_files.html b/templates/all_files.html index acc3d94..8e7f22f 100644 --- a/templates/all_files.html +++ b/templates/all_files.html @@ -3,8 +3,8 @@

Lista wszystkich backupów

- -
+ +
@@ -29,11 +29,11 @@
- -
+ +
- +
@@ -73,14 +73,13 @@
{{ file.created_at.strftime("%Y-%m-%d %H:%M:%S") }} {{ file.file_path|filesize }} - + - - @@ -88,8 +87,7 @@ {% if file.backup_type == 'binary' %}
- -
@@ -99,7 +97,7 @@
{% if file.backup_type == 'export' %} - + {% else %} @@ -108,8 +106,7 @@
- -
@@ -123,16 +120,17 @@ - +
- -
+ + + - + {% block scripts %}{% endblock %} diff --git a/templates/change_password.html b/templates/change_password.html index a2b5be3..ef92728 100644 --- a/templates/change_password.html +++ b/templates/change_password.html @@ -1,11 +1,11 @@ {% extends "base.html" %} {% block content %} -
-
+
+
-
-
-

Zmień hasło

+
+
+

Zmień hasło

diff --git a/templates/dashboard.html b/templates/dashboard.html index ef7d9d8..6405627 100644 --- a/templates/dashboard.html +++ b/templates/dashboard.html @@ -5,7 +5,7 @@
-
+
Zobacz routery @@ -53,14 +53,14 @@
@@ -73,11 +73,11 @@ {% else %} {% set success_percent = 0 %} {% endif %} -
+
Statystyki operacji

Udane operacje: {{ success_ops }}, Nieudane operacje: {{ failure_ops }}

-
+
{{ success_percent }}%
@@ -89,7 +89,7 @@
-
+
Log operacji @@ -114,8 +114,8 @@
- -
+ +
Dodatkowe statystyki
@@ -131,6 +131,5 @@
-
{% endblock %} diff --git a/templates/diff.html b/templates/diff.html index 71794ff..175a166 100644 --- a/templates/diff.html +++ b/templates/diff.html @@ -1,41 +1,47 @@ {% extends "base.html" %} {% block content %}
-

Porównanie: {{ backup1.file_path|basename }} vs {{ backup2.file_path|basename }}

-
-
- Powrót +
+
+

+ Porównanie: {{ backup1.file_path|basename }} vs {{ backup2.file_path|basename }} +

+
+
+
+ Powrót +
+
- + {% endblock %} diff --git a/templates/diff_selector.html b/templates/diff_selector.html index 6e03191..a8119e2 100644 --- a/templates/diff_selector.html +++ b/templates/diff_selector.html @@ -1,8 +1,10 @@ {% extends "base.html" %} {% block content %}
-

Porównanie backupów (Diff)

-
+
+
+

Porównanie backupów (Diff)

+
@@ -29,8 +31,10 @@
-
- +
+
@@ -39,12 +43,12 @@ {% endblock %} diff --git a/templates/edit_router.html b/templates/edit_router.html index 50e7e9f..05f8070 100644 --- a/templates/edit_router.html +++ b/templates/edit_router.html @@ -1,9 +1,9 @@ {% extends "base.html" %} {% block content %} -
-
-
-

Edycja urządzenia

+
+
+
+

Edycja urządzenia

@@ -25,15 +25,15 @@
- + Klucz prywatny +
+ Wklej wraz z -----BEGIN RSA PRIVATE KEY----- i -----END RSA PRIVATE KEY-----. Jeśli pusty – użyje klucza globalnego. +

- Jeśli podajesz klucz SSH lub zdefiniowany jest klucz globalny, to logowanie hasłem jest nieaktywne. - + Jeśli jest klucz SSH lub klucz globalny, hasło może być ignorowane. +
diff --git a/templates/login.html b/templates/login.html index 3234fb3..22f86e6 100644 --- a/templates/login.html +++ b/templates/login.html @@ -1,23 +1,23 @@ {% extends "base.html" %} -{% block head %} -{% endblock %} +{% block head %}{% endblock %} + {% block content %} -
-
+
+
-
-
-

Zaloguj się

+
+
+

Zaloguj się

- +
- +
@@ -25,7 +25,10 @@
diff --git a/templates/logs.html b/templates/logs.html index 1c39fa2..1ee56eb 100644 --- a/templates/logs.html +++ b/templates/logs.html @@ -10,12 +10,12 @@

Historia logów operacji

- -
+ +
- +
@@ -28,7 +28,7 @@
-
+
@@ -50,14 +50,14 @@ {% endblock %} {% block scripts %} {{ super() }} - + @@ -66,7 +66,10 @@ $(document).ready(function() { $('#logsTable').DataTable({ responsive: true, - order: [[0, 'desc']] + order: [[0, 'desc']], + language: { + url: '//cdn.datatables.net/plug-ins/1.13.4/i18n/pl.json' + } }); }); diff --git a/templates/register.html b/templates/register.html index 79b46d9..de75e3b 100644 --- a/templates/register.html +++ b/templates/register.html @@ -1,23 +1,23 @@ {% extends "base.html" %} -{% block head %} -{% endblock %} +{% block head %}{% endblock %} + {% block content %} -
-
+
+
-
-
-

Rejestracja

+
+
+

Rejestracja

- +
- +
@@ -25,7 +25,10 @@
diff --git a/templates/router_details_v2.html b/templates/router_details_v2.html index 6ccfd5d..033c643 100644 --- a/templates/router_details_v2.html +++ b/templates/router_details_v2.html @@ -1,17 +1,17 @@ {% extends "base.html" %} {% block content %} -
- {% if current_view == 'v1' %} - Przełącz na widok v2 - {% else %} - Przełącz na widok v1 - {% endif %} -
- -
-
-

Router: {{ router.name }}

+
+ {% if current_view == 'v1' %} + Przełącz na widok v2 + {% else %} + Przełącz na widok v1 + {% endif %} +
+ +
+
+

Router: {{ router.name }}

@@ -20,7 +20,6 @@ SSH User: {{ router.ssh_user }}

-
@@ -35,16 +34,21 @@ +
-
+
{% if export_backups %} @@ -55,68 +59,68 @@
- +
-
- - - - - - - - - - - - - - - {% for b in export_backups %} - - - - - - - - - - - - {% endfor %} - -
Nazwa plikuRozmiarDataDiffPobierzPodglądWyślij mailemUsuń
- - {{ b.file_path|basename }}{{ b.file_path|filesize }}{{ b.created_at.strftime("%Y-%m-%d %H:%M:%S") }} - {% if loop.index0 > 0 %} - Diff - {% else %} - Brak nowszego - {% endif %} - - - - - - - - - -
- - -
-
-
- - -
-
+ + + + + + + + + + + + + + + + {% for b in export_backups %} + + + + + + + + + + + + {% endfor %} + +
Nazwa plikuRozmiarDataDiffPobierzPodglądWyślij mailemUsuń
+ + {{ b.file_path|basename }}{{ b.file_path|filesize }}{{ b.created_at.strftime("%Y-%m-%d %H:%M:%S") }} + {% if loop.index0 > 0 %} + Diff + {% else %} + Brak nowszego + {% endif %} + + + + + + + + + +
+ + +
+
+
+ + +
+
{% else %}

Brak plików /export.

@@ -124,9 +128,10 @@
+
-
+
{% if binary_backups %} @@ -137,64 +142,63 @@
- +
- - - - - - - - - - - - - - - {% for b in binary_backups %} - - - - - - - - - - - {% endfor %} - -
Nazwa plikuRozmiarDataPobierzWgraj do routeraWyślij mailemUsuń
- - - - {{ b.file_path|basename }} - {{ b.file_path|filesize }}{{ b.created_at.strftime("%Y-%m-%d %H:%M:%S") }} - - - - -
- -
-
-
- -
-
-
- - -
-
+ + + + + + + + + + + + + + + {% for b in binary_backups %} + + + + + + + + + + + {% endfor %} + +
Nazwa plikuRozmiarDataPobierzWgraj do routeraWyślij mailemUsuń
+ + + {{ b.file_path|basename }} + {{ b.file_path|filesize }}{{ b.created_at.strftime("%Y-%m-%d %H:%M:%S") }} + + + + +
+ +
+
+
+ +
+
+
+ + +
+
{% else %}

Brak plików binarnych.

@@ -216,7 +220,7 @@ document.getElementById('select_all_binary').addEventListener('change', function checkboxes.forEach(cb => cb.checked = e.target.checked); }); -// Inicjalizacja zakładek Bootstrap (jeśli nie są już inicjowane globalnie) +// Inicjalizacja zakładek Bootstrap var triggerTabList = [].slice.call(document.querySelectorAll('#routerTab button')); triggerTabList.forEach(function (triggerEl) { var tabTrigger = new bootstrap.Tab(triggerEl); @@ -226,7 +230,7 @@ triggerTabList.forEach(function (triggerEl) { }); }); -// Inicjalizacja tooltipów Bootstrap +// Inicjalizacja tooltipów var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')); tooltipTriggerList.forEach(function (tooltipTriggerEl) { new bootstrap.Tooltip(tooltipTriggerEl); diff --git a/templates/routers.html b/templates/routers.html index de2af12..c685b67 100644 --- a/templates/routers.html +++ b/templates/routers.html @@ -1,63 +1,67 @@ {% extends "base.html" %} {% block content %}
-
-

Lista urządzeń

- - Dodaj nowe urządzenie - -
-
- - - - - - - - - - - - - - {% for router in routers %} - - - - - - - - - - {% endfor %} - -
NazwaHostPortExportyBackupy binarneTest PołączeniaAkcje
{{ router.name }}{{ router.host }}{{ router.port }} - - {{ router.backups|selectattr("backup_type", "equalto", "export")|list|length }} - - - - {{ router.backups|selectattr("backup_type", "equalto", "binary")|list|length }} - - - - - - Szczegóły - - - Edytuj - -
- -
-
+
+
+

Lista urządzeń

+ + Dodaj nowe urządzenie + +
+
+
+ + + + + + + + + + + + + + {% for router in routers %} + + + + + + + + + + {% endfor %} + +
NazwaHostPortExportyBackupy binarneTest PołączeniaAkcje
{{ router.name }}{{ router.host }}{{ router.port }} + + {{ router.backups|selectattr("backup_type", "equalto", "export")|list|length }} + + + + {{ router.backups|selectattr("backup_type", "equalto", "binary")|list|length }} + + + + + + Szczegóły + + + Edytuj + +
+ +
+
+
+
{% endblock %} diff --git a/templates/settings.html b/templates/settings.html index 11328e2..af84f53 100644 --- a/templates/settings.html +++ b/templates/settings.html @@ -1,15 +1,16 @@ {% extends "base.html" %} {% block content %} -
-
-
-

Ustawienia globalne

+
+
+
+

Ustawienia globalne

+
-

Powiadomienia - Pushover

+
Powiadomienia - Pushover
@@ -24,10 +25,11 @@

+
-

Powiadomienia - SMTP (e-mail)

-
+
Powiadomienia - SMTP (e-mail)
+
@@ -47,27 +49,27 @@
-

+
-

Globalny klucz SSH

-
- - -
+
Globalny klucz SSH
+ +
+
+
@@ -78,8 +80,12 @@
+
diff --git a/templates/view_export.html b/templates/view_export.html index e5f285c..9a48ba3 100644 --- a/templates/view_export.html +++ b/templates/view_export.html @@ -1,11 +1,19 @@ {% extends "base.html" %} {% block content %}
-

Podgląd eksportu: {{ backup.file_path|basename }}

-
- -
- Powrót +
+
+

+ Podgląd eksportu: {{ backup.file_path|basename }} +

+
+
+ +
+ Powrót +
+
+
@@ -28,8 +36,7 @@ lineNumbers: true, readOnly: true }); - // Dopasowanie rozmiaru edytora do zawartości - editor.setSize("100%", "588px"); + editor.setSize("100%", "600px"); }); {% endblock %}