feat(nav): add Izba link to main navbar for all logged-in users
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
Shows chamber authorities page between Edukacja and Rada links. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
06112c534d
commit
da9c913ad1
@ -1478,6 +1478,11 @@
|
||||
|
||||
<li><a href="{{ url_for('education.education_index') }}" class="nav-link {% if request.endpoint and 'education' in request.endpoint %}active{% endif %}">Edukacja</a></li>
|
||||
|
||||
<!-- Władze Izby - dla wszystkich zalogowanych -->
|
||||
{% if current_user.is_authenticated %}
|
||||
<li><a href="{{ url_for('public.chamber_authorities') }}" class="nav-link {% if request.endpoint == 'public.chamber_authorities' %}active{% endif %}">Izba</a></li>
|
||||
{% endif %}
|
||||
|
||||
<!-- Rada Izby - tylko dla członków Rady -->
|
||||
{% if current_user.is_authenticated and (current_user.is_rada_member or current_user.can_access_admin_panel()) %}
|
||||
<li><a href="{{ url_for('board.index') }}" class="nav-link {% if request.endpoint and 'board' in request.endpoint %}active{% endif %}">Rada</a></li>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user