{% extends "base.html" %} {% block title %}Panel Analityki - Norda Biznes Partner{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Panel Admina

Analityka Użytkowników

{% if user_detail %}
{{ user_detail.user.name[0]|upper if user_detail.user and user_detail.user.name else '?' }}

{{ user_detail.user.name if user_detail.user else 'Nieznany' }}

{{ user_detail.user.email if user_detail.user else '' }}

Zamknij

Ostatnie sesje

{% for s in user_detail.sessions %} {% else %} {% endfor %}
Data Czas trwania Strony Kliknięcia Urzadzenie
{{ s.started_at.strftime('%Y-%m-%d %H:%M') }} {{ ((s.duration_seconds or 0) // 60) }} min {{ s.page_views_count|default(0) }} {{ s.clicks_count|default(0) }} {{ s.device_type|default('?') }} / {{ s.browser|default('?') }}
Brak sesji

Ostatnie odwiedzone strony

{% for p in user_detail.pages %} {% else %} {% endfor %}
Ścieżka Czas Data
{{ p.path }} {% if p.time_on_page_seconds %}{{ (p.time_on_page_seconds // 60) }} min{% else %}-{% endif %} {{ p.viewed_at.strftime('%Y-%m-%d %H:%M') }}
Brak danych
{% endif %}
{{ stats.total_sessions }} Sesje
{{ stats.unique_users }} Unikalni uzytkownicy
{{ stats.total_page_views }} Wysw. stron
{{ stats.total_clicks }} Kliknięcia
{{ (stats.avg_duration / 60)|round(1) if stats.avg_duration else 0 }} min Śr. czas sesji

Urządzenia

{{ device_stats.get('desktop', 0) }}
Desktop
{% set total_devices = device_stats.get('desktop', 0) + device_stats.get('mobile', 0) + device_stats.get('tablet', 0) %}
{{ ((device_stats.get('desktop', 0) / total_devices * 100)|round(0)|int if total_devices > 0 else 0) }}%
{{ device_stats.get('mobile', 0) }}
Mobile
{{ ((device_stats.get('mobile', 0) / total_devices * 100)|round(0)|int if total_devices > 0 else 0) }}%
{{ device_stats.get('tablet', 0) }}
Tablet
{{ ((device_stats.get('tablet', 0) / total_devices * 100)|round(0)|int if total_devices > 0 else 0) }}%

Popularne strony

{% for page in popular_pages[:10] %} {% else %} {% endfor %}
Ścieżka Wysw. Unik.
{{ page.path }} {{ page.views }} {{ page.unique_users }}
Brak danych

Ranking użytkowników wg aktywności

{% for user in user_rankings %} {% else %} {% endfor %}
Użytkownik Sesje Strony Kliknięcia Czas Zaangażowanie
{{ user.name[0]|upper if user.name else '?' }}
{{ user.sessions }} {{ user.page_views|default(0) }} {{ user.clicks|default(0) }} {{ ((user.total_time or 0) / 60)|round(0)|int }} min {% set engagement = (user.page_views|default(0)) + (user.clicks|default(0)) * 2 + ((user.total_time or 0) / 120)|int %} {% if engagement >= 50 %} {% elif engagement >= 20 %} {% else %} {% endif %} Szczegóły

Brak danych o użytkownikach w wybranym okresie

Ostatnie sesje

{% for s in recent_sessions %}
{% if s.user %}
{{ s.user.name }}
{{ s.user.email }}
{% else %}
Niezalogowany
{% endif %}
{% if s.device_type == 'mobile' %} {% elif s.device_type == 'tablet' %} {% else %} {% endif %} {{ s.browser|default('?') }}
{{ ((s.duration_seconds or 0) // 60) }} min
{{ s.page_views_count|default(0) }} stron
{{ s.started_at.strftime('%d.%m %H:%M') }}
{% else %}

Brak sesji w wybranym okresie

{% endfor %}
{% endblock %}