diff --git a/templates/base.html b/templates/base.html index 56fd9cc..a803493 100755 --- a/templates/base.html +++ b/templates/base.html @@ -37,7 +37,7 @@ - + @@ -574,15 +574,6 @@ {% endif %} - -
- 🎉 - - Oficjalne uruchomienie portalu: 9 kwietnia 2026 — prezentacja dla członków Izby w Urzędzie Miasta Wejherowo. - - -
- {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} @@ -771,24 +762,6 @@ } }); - // Development notice banner - function dismissDevNotice() { - const notice = document.getElementById('devNotice'); - if (notice) { - notice.style.display = 'none'; - // Remember dismissal for this session - sessionStorage.setItem('devNoticeDismissed', 'true'); - } - } - - // Check if notice was dismissed in this session - document.addEventListener('DOMContentLoaded', function() { - if (sessionStorage.getItem('devNoticeDismissed') === 'true') { - const notice = document.getElementById('devNotice'); - if (notice) notice.style.display = 'none'; - } - }); - // Fetch unread message count (for authenticated users) {% if current_user.is_authenticated %} async function updateUnreadBadge() {