{% extends "base.html" %} {% block title %}Dashboard - Busylight{% endblock %} {% block content %}

Dashboard

{% if not authenticated %}
Azure ist nicht verbunden. Bitte unter Einstellungen konfigurieren und python app.py --auth ausfuehren.
{% endif %} {% if devices %}
{% for device in devices %}
{{ device.name }} {{ device.hostname }}
{% for seg in device.segments|reverse %}
Segment {{ seg.index }} {% if seg.user %} {% if seg.aida == '-' and seg.teams == '-' %}
{{ seg.user }}
Warte auf Status... {% else %}
{{ seg.user }}
{% if seg.aida == 'anwesend' %} Anwesend {% elif seg.aida == 'abwesend' %} Abwesend {% elif seg.aida == 'homeoffice' %} Homeoffice {% else %} {{ seg.aida }} {% endif %} {% if seg.teams != '-' %} {% if 'available' in seg.teams %} Verfuegbar {% elif 'busy' in seg.teams or 'inacall' in seg.teams or 'inameeting' in seg.teams %} Beschaeftigt {% elif 'donotdisturb' in seg.teams %} Nicht stoeren {% elif 'away' in seg.teams or 'berightback' in seg.teams %} Abwesend {% elif 'offline' in seg.teams %} Offline {% elif 'presenting' in seg.teams %} Praesentiert {% elif 'outofoffice' in seg.teams %} Nicht im Buero {% elif 'inactive' in seg.teams or 'offwork' in seg.teams %} Inaktiv {% else %} {{ seg.teams }} {% endif %} {% endif %} {% if seg.phone %} Telefoniert {% else %} Frei {% endif %}
{% endif %} {% else %}
Nicht zugeordnet
{% endif %}
{% endfor %}
{% endfor %}
{% else %}

Noch keine WLED-Geraete konfiguriert.

Geraete hinzufuegen
{% endif %} {% endblock %} {% block scripts %} {% endblock %}