{% block extra_head %}{% endblock %}
{% set nav_mode = (global_settings.navbar_brand_mode if global_settings and global_settings.navbar_brand_mode else ('logo' if global_settings and global_settings.show_logo_in_navbar else 'text')) %} {% if nav_mode == 'logo' and global_settings and global_settings.logo_url %}
{% else %}
{{ global_settings.site_title if global_settings and global_settings.site_title else "Zbiórki" }}
{% endif %}
{% set hide_links = request.path == url_for('index') or request.path == url_for('zbiorki_zrealizowane') %} {% if not hide_links %}
Aktualne zbiórki
Zrealizowane zbiórki
{% endif %} {% if current_user.is_authenticated %}
Panel Admina
Wyloguj
{% else %} {% if is_ip_allowed %}
Zaloguj
{% endif %} {% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% block content %}{% endblock %}
{% block extra_scripts %}{% endblock %}