{% extends "base.html" %} {% block title %}Dashboard - Busylight{% endblock %} {% block content %}
Dashboard
{% if not authenticated %}
Azure nicht verbunden. Einstellungen pruefen.
{% endif %} {% if devices %}
{% for device in devices %}
{{ device.name }}
{% for seg in device.segments|reverse %} {% if seg.user %} {% if seg.aida == '-' and seg.teams == '-' %}
{{ seg.user }}
{% else %}
{{ seg.user }}
{% if seg.aida == 'anwesend' %} Buero {% elif seg.aida == 'abwesend' %} Weg {% elif seg.aida == 'homeoffice' %} HO {% endif %} {% if seg.teams != '-' %} {% if 'available' in seg.teams %} Frei {% elif 'busy' in seg.teams or 'inacall' in seg.teams or 'inameeting' in seg.teams %} Besetzt {% elif 'donotdisturb' in seg.teams %} DND {% elif 'away' in seg.teams or 'berightback' in seg.teams %} Weg {% elif 'presenting' in seg.teams %} Praes. {% elif 'offline' in seg.teams or 'inactive' in seg.teams or 'offwork' in seg.teams %} Off {% elif 'outofoffice' in seg.teams %} OoO {% endif %} {% endif %} {% if seg.phone %} {% endif %}
{% endif %} {% else %}
-- leer --
{% endif %} {% endfor %}
{% endfor %}
{% else %}

Noch keine Tuerschilder konfiguriert.

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