{% extends 'workflows/base_shell.html' %} {% load static i18n %} {% block title %}{% trans "Einweisung durchführen" %}{% endblock %} {% block extra_css %} {% endblock %} {% block shell_body %} {% include 'workflows/includes/app_header.html' with header_show_dashboard=1 header_show_home=1 header_inside_shell=1 %}

{% trans "Einweisung durchführen" %}

{% trans "Einfache Live-Checkliste für das persönliche Onboarding-Gespräch. Punkte abhaken, Notizen ergänzen, als Entwurf speichern oder als abgeschlossen markieren." %}

{% include 'workflows/includes/messages.html' %}

{% trans "Mitarbeitende Person" %}

{% trans "Name" %}{{ display_name|default:onboarding.full_name }} {% trans "Abteilung" %}{{ onboarding.department|default:"-" }} {% trans "Berufsbezeichnung" %}{{ onboarding.job_title|default:"-" }} {% trans "Dienstliche E-Mail" %}{{ onboarding.work_email|default:"-" }} {% trans "Vertragsbeginn" %}{{ onboarding.contract_start|default:"-" }}

{% trans "Sitzungsstatus" %}

{% trans "Status" %} {{ session.get_status_display }} {% trans "Abgeschlossen von" %}{{ session.completed_by_name|default:"-" }} {% trans "Abgeschlossen am" %}{% if session.completed_at %}{{ session.completed_at|date:"Y-m-d H:i" }}{% else %}-{% endif %} {% trans "Letzte Änderung" %}{{ session.updated_at|date:"Y-m-d H:i" }}
{% trans "Fortschritt der Einweisung" %}
{% blocktrans trimmed with checked=checked_count total=total_count %}{{ checked }} von {{ total }} Punkten erledigt{% endblocktrans %}
{{ progress_percent }}%
{% csrf_token %} {% for section in sections %}
{{ section.title }}
{% for item in section.items %} {% endfor %}
{% endfor %}

{% trans "Notizen" %}

{% trans "Diese Seite bleibt bewusst einfach: echte Web-Checkboxen, Notizen und ein klarer Entwurf/Abschluss-Status. Kein zusätzlicher komplexer PDF-Signatur-Workflow." %}

{% trans "Live-Protokoll" %}

{% trans "Erzeugt das Live-Protokoll nur aus den aktuell gespeicherten Haken und Notizen." %}
{% csrf_token %}
{% if session_pdf_url %} {% trans "Live-Protokoll öffnen" %} {% endif %}
{% endblock %}