{% extends "company_base.html" %} {% block title %}Mitarbeiter - {{ session.company_name }}{% endblock %} {% block content %}

Mitarbeiter verwalten

Verwalte die Konten deiner Teammitglieder.

{% if error %}
{{ error }}
{% endif %} {% if success %}
{{ success }}
{% endif %}

Neuen Mitarbeiter einladen

{% if pending_invitations and pending_invitations|length > 0 %}

Offene Einladungen

{% for invitation in pending_invitations %}

{{ invitation.email }}

Eingeladen am {{ invitation.created_at.strftime('%d.%m.%Y') }}

Ausstehend
{% endfor %}
{% endif %}

Aktive Mitarbeiter ({{ employees|length }})

{% if employees and employees|length > 0 %}
{% for employee in employees %}
{% if employee.linkedin_picture %} {{ employee.linkedin_name }} {% else %} {{ (employee.display_name or employee.linkedin_name or employee.email)[0] | upper }} {% endif %}

{{ employee.display_name or employee.linkedin_name or employee.email }}

{{ employee.email }}

{% set status = employee.onboarding_status.value if employee.onboarding_status.value is defined else employee.onboarding_status %} {% if status == 'completed' %}Aktiv{% else %}Onboarding{% endif %}
{% endfor %}
{% else %}

Noch keine Mitarbeiter

Lade dein erstes Teammitglied ein.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}