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

Dashboard

{% if license_key %}

{{ total_employees }}/{{ license_key.max_employees }}

Mitarbeiter

{% set remaining = license_key.max_employees - total_employees %} {% if remaining > 0 %} Noch {{ remaining }} verfügbar {% else %} Limit erreicht {% endif %}

{% else %}

{{ total_employees }}

Mitarbeiter

Unbegrenzt

{% endif %}

{{ pending_invitations | length }}

Offene Einladungen

{% if company.company_strategy and company.company_strategy.mission %} {% else %} {% endif %}
{% if company.company_strategy and company.company_strategy.mission %}

Aktiv

Strategie definiert

{% else %}

Ausstehend

Strategie fehlt

{% endif %}
{% if quota %}

Token-Verbrauch heute

Tokens heute {{ quota.tokens_used | default(0) }} / {% if license_key and license_key.daily_token_limit %}{{ license_key.daily_token_limit }}{% else %}∞{% endif %}
{% if license_key and license_key.daily_token_limit and license_key.daily_token_limit > 0 %} {% set token_pct = ((quota.tokens_used / license_key.daily_token_limit * 100) | round) %} {% set token_pct = [token_pct, 100] | min %} {% else %} {% set token_pct = 0 %} {% endif %}

Limits werden täglich um Mitternacht zurückgesetzt. {% if license_key %}(Lizenz: {{ license_key.key }}){% else %}Unbegrenzter Account.{% endif %}

{% endif %}

Schnellzugriff

{% if employees %}

Mitarbeiter

Alle anzeigen
{% for emp in employees[:5] %}
{% if emp.avatar_url %} {{ emp.display_name }} {% else %} {{ (emp.display_name or emp.email)[0] | upper }} {% endif %}

{{ emp.display_name or emp.email }}

{{ emp.email }}

{% if emp.onboarding_status == 'completed' %}Aktiv{% else %}Onboarding{% endif %}
{% endfor %}
{% endif %}
{% endblock %}