! RFACTOR TEMPLATE2

This commit is contained in:
Mateusz Gruszczyński 2025-02-28 16:28:13 +01:00
parent d0f1d25063
commit 85a37e4a78
2 changed files with 24 additions and 13 deletions

13
app.py
View File

@ -427,6 +427,19 @@ def format_version(value):
return result return result
@app.template_global()
def bootstrap_alert_category(cat):
mapping = {
'error': 'danger',
'fail': 'danger',
'warning': 'warning',
'warn': 'warning',
'ok': 'success',
'success': 'success',
'info': 'info'
}
return mapping.get(cat.lower(), 'info')
def fetch_changelogs(force=False): def fetch_changelogs(force=False):
changelog_url = "https://mikrotik.com/download/changelogs" changelog_url = "https://mikrotik.com/download/changelogs"
current_date = datetime.utcnow() current_date = datetime.utcnow()

View File

@ -219,19 +219,17 @@
<!-- Kontener do wyświetlania komunikatów flash --> <!-- Kontener do wyświetlania komunikatów flash -->
<div class="container mt-3"> <div class="container mt-3">
{% with messages = get_flashed_messages(with_categories=True) %} {% with messages = get_flashed_messages(with_categories=True) %}
{% if messages %} {% if messages %}
{% for category, message in messages %} {% for category, message in messages %}
<!-- Jeśli brak kategorii, używamy 'info' --> <!-- Zmapuj do stylu Bootstrapa -->
{% if category == 'message' %} {% set bs_cat = bootstrap_alert_category(category) %}
{% set category = 'info' %} <div class="alert alert-{{ bs_cat }} alert-dismissible fade show" role="alert">
{% endif %} {{ message }}
<div class="alert alert-{{ category }} alert-dismissible fade show" role="alert"> <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
{{ message }} </div>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> {% endfor %}
</div> {% endif %}
{% endfor %} {% endwith %}
{% endif %}
{% endwith %}
</div> </div>
<main class="container my-4 flex-fill"> <main class="container my-4 flex-fill">