{% extends "base.html" %} {% block title %}Panel użytkownika - Norda Biznes Partner{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Panel użytkownika

Witaj, {{ current_user.name }}! {% if current_user.can_access_admin_panel() %} Administrator {% endif %}

Wyloguj
{% if user_companies|length == 1 and user_companies[0].company %} {% elif user_companies|length > 1 %} {# User's companies section — prominent cards #} {% if user_companies %}

{{ 'Twoje firmy' if user_companies|length > 1 else 'Twoja firma' }}

{% for uc in user_companies %} {% if uc.company %}
{{ uc.company.name }} {% if uc.is_primary and user_companies|length > 1 %} Główna {% endif %}
{% if uc.role == 'MANAGER' %}Zarządzający{% elif uc.role == 'EMPLOYEE' %}Pracownik{% elif uc.role == 'VIEWER' %}Podgląd{% endif %} {% if uc.company.category %} · {{ uc.company.category.name }}{% endif %}
Zobacz profil {% if uc.role == 'MANAGER' or current_user.is_admin %} Edytuj profil {% elif uc.role == 'EMPLOYEE' %} {% endif %}
{% endif %} {% endfor %}
{% endif %} {# Onboarding progress widget #} {% if onboarding and not onboarding.all_complete %}

Postęp profilu firmy {{ onboarding.completed }}/{{ onboarding.total }}

{% for step in onboarding.steps %}
{% if step.completed %} {% else %} {{ loop.index }} {% endif %}
{{ step.label }}
{{ step.responsible_label }} {% if not step.completed and step.action_url %} Uzupełnij → {% endif %}
{% endfor %}
{% elif onboarding and onboarding.all_complete %}

Profil firmy kompletny!

{% endif %} {# Membership CTA for users without company #} {% if not user_companies %} {% if has_pending_application %}

Twoja deklaracja członkowska jest w trakcie rozpatrywania

Status: {{ pending_application.status_label if pending_application else 'Wysłane' }}

Zobacz szczegóły →
{% elif has_draft_application %}

Masz niedokończoną deklarację członkowską

Kontynuuj wypełnianie formularza

Kontynuuj →
{% else %}

Dołącz do Izby Przedsiębiorców NORDA

Wypełnij deklarację członkowską online i zyskaj dostęp do pełnych funkcji portalu

Złóż deklarację →
{% endif %} {% elif current_user.company and not current_user.company.nip %} {# User has company but missing NIP - suggest data update #}

Uzupełnij dane firmy

Twoja firma nie ma jeszcze NIP w systemie. Uzupełnij dane, aby pobrać informacje z rejestru.

Uzupełnij NIP →
{% endif %} {% if current_user.can_access_admin_panel() %}

Funkcje administratora

{% if admin_kpi %}
{{ admin_kpi.active_users }}/{{ admin_kpi.total_users }}
Aktywni członkowie (7d)
{{ admin_kpi.sessions }}
Sesje (7 dni)
{{ admin_kpi.problems }}
Alerty bezpieczeństwa
{{ admin_kpi.never_logged }}
Nigdy nie zalogowani
{% endif %}
{% endif %}
Twój profil

Nazwa: {{ current_user.name }}

Email: {{ current_user.email }}

Rola: {% if current_user.can_access_admin_panel() %} Administrator {% else %} Użytkownik {% endif %}

{% if user_companies|length > 1 %} {% endif %} {% endblock %}