{% extends "base.html" %} {% block title %}Mitarbeiter verwalten{% 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.linkedin_name or employee.email)[0] | upper }} {% endif %}

{{ employee.linkedin_name or employee.email }}

{{ employee.email }}

{% if employee.onboarding_status == 'completed' or employee.onboarding_status.value == 'completed' %}Aktiv{% else %}Onboarding{% endif %}
{% endfor %}
{% else %}

Noch keine Mitarbeiter

Lade dein erstes Teammitglied ein.

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