{% extends 'workflows/base_shell.html' %} {% load static i18n %} {% block title %}{% trans "Offboarding-Anfrage" %}{% endblock %} {% block extra_css %} {% endblock %} {% block pre_shell %} {% endblock %} {% block shell_body %} {% include 'workflows/includes/app_header.html' with header_show_lang=1 header_show_home=1 header_inside_shell=1 %}

{% trans "Mitarbeitende suchen" %}

{% trans "Vorhandene Profildaten laden, bevor die Austrittsangaben erfasst werden." %}

{% if search_results %}
{% for p in search_results %} {{ p.full_name }} ({{ p.work_email }}) {% endfor %}
{% endif %} {% if selected_profile %}

{% trans "Vorbefüllt aus:" %} {{ selected_profile.full_name }} ({{ selected_profile.work_email }})

{% endif %}
{% csrf_token %}
{% for section in offboarding_sections %}

{{ section.title }}

{{ section.subtitle }}

{% for field in section.fields %} {% if field.field.widget.input_type == 'checkbox' %}
{{ field }} {{ field.label_tag }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {{ field.errors }}
{% else %}
{{ field.label_tag }} {{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {{ field.errors }}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %} {% block extra_scripts %} {% endblock %}