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 %} -
-----BEGIN RSA PRIVATE KEY-----
i -----END RSA PRIVATE KEY-----
. Jeśli pusty – użyje klucza globalnego.
+
@@ -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 %} |
---|