{% extends "base.html" %} {% from 'macros/badges.html' import badge_secondary %} {% block title %}Přehled za období — MedCover{% endblock %} {% block content %}

Přehled za období

← Zpět na přehledy
{# Date-range form #}
{% for label, fd, td in quick_ranges %} {{ label }} {% endfor %}
{% if error is defined and error %}
{{ error }}
{% endif %} {% if results is not none %} {# CSV download button #}
⬇ Stáhnout CSV
{# Summary cards #}
{{ results.total_events }}
Akcí celkem
{{ results.filled_spots }} / {{ results.total_spots }}
Obsazeno pozic
{{ results.total_worked_hours | cznum }}
Odprac. hodin
{{ results.total_patients }}
Ošetřených / účastníků
Akce podle stavu
{% if results.status_counts %} {% for status, cnt in results.status_counts.items() %} {{ badge_secondary(status ~ ': ' ~ cnt, extra_classes='me-1') }} {% endfor %} {% else %} {% endif %}
{# Results grouped by ME #} {% if results.me_groups %} {% for group in results.me_groups %}
{{ group.master_event.name }}
{% for ev in group.events %} {% endfor %}
Akce Datum Stav Pozice (obsaz./celkem) Odprac. hodiny Ošetřených / účastníků
{{ ev.name }} {{ ev.start_datetime | localdt("%d.%m.%Y") }} {{ ev.status.value }} {{ ev.filled_spots }} / {{ ev.total_spots }} {% if ev.actual_hours is not none %}{{ ev.actual_hours | cznum }}{% else %}{% endif %} {{ ev.post_event_count or 0 if ev.event_type.name != 'PRESENTATION' else '—' }}
{% endfor %} {% else %}
Ve zvoleném období nebyly nalezeny žádné akce.
{% endif %} {# Per-user statistics across the date range #} {% if results.user_stat_rows %}

Statistiky účastníků za období

{% for u, s in results.user_stat_rows %} {% endfor %}
Účastník Směny odsloužené Směny plánované Hodiny odsloužené Hodiny plánované Hodiny celkem Hodiny zdarma Poslední směna Příští směna
{% if current_user.has_permission("report.view") %} {{ u.name }} {% else %}{{ u.name }}{% endif %} {{ s.shifts_served }} {{ s.shifts_planned }} {{ s.hours_served | cznum }} {{ s.hours_planned | cznum }} {{ s.hours_total | cznum }} {{ s.hours_free | cznum }} {% if s.last_shift %}{{ s.last_shift | localdt("%d.%m.%Y") }}{% else %}{% endif %} {% if s.next_shift %}{{ s.next_shift | localdt("%d.%m.%Y") }}{% else %}{% endif %}
{% endif %} {% elif from_date or to_date %} {# Form was shown but no results rendered — empty state already handled above #} {% else %}
Zadejte rozsah dat a klikněte na Zobrazit přehled.
{% endif %} {% endblock %}