{% extends 'base.html' %} {% block title %}nbsp.space - Benutzerdetails: {{ user.name }}{% endblock %} {% block content %}

Benutzerdetails: {{ user.name }}

{% if current_user and '/nbspspaceadmin' in current_user.groups and current_user.id != user.id %} {% endif %} Zurück zur Liste
Grundinformationen
ID: {{ user.id }} {% if current_user and '/nbspspaceadmin' in current_user.groups %} {% endif %}
Name: {{ user.name }}
E-Mail: {{ user.email if user.email else '-' }}
Provider: {{ user.provider }}
Presence Tracking: {% if user.setpresence %} Aktiviert {% else %} Deaktiviert {% endif %}
Verstecke nicht verfügbare: {% if user.removeunavailable %} Aktiviert {% else %} Deaktiviert {% endif %}
First Login: {% if user.first_login %} Ja ({{ user.first_login }}) {% else %} Nein ({{ user.first_login }}) {% endif %}
Letzter Login Version: {{ user.last_login_version or '-' }}
Gruppen
{% if user.groups %}
{% for group in user.groups %} {{ group }} {% endfor %}
{% else %}

Keine Gruppen zugewiesen

{% endif %}
Icebox-Account
{% if user.icebox_account %}

{{ user.icebox_account }}

{% else %}

Kein Icebox-Account konfiguriert

{% endif %}
Sediment iCal
{% if user.sedimentical %}

Sediment iCal URL konfiguriert

{% else %}

Keine Sediment iCal URL konfiguriert

{% endif %}
UI-Einstellungen
Theme: {% if user.theme == 'light' %} Light {% elif user.theme == 'dark' %} Dark {% elif user.theme == 'classic' %} Classic {% else %} Standard {% endif %}
Desktop Layout: {% if user.desktop_layout == 'categorized' %} Kategorisiert {% elif user.desktop_layout == 'compact' %} Kompakt {% else %} Standard {% endif %}
Mobile Layout: {% if user.mobile_layout == 'categorized' %} Kategorisiert {% elif user.mobile_layout == 'compact' %} Kompakt {% else %} Standard {% endif %}
Formular-Informationen
Formular-Name: {{ user.form_name or '-' }}
Ausgeblendete Links
{% if user.hidden_links and user.hidden_links|length > 0 %}
    {% for link in user.hidden_links %}
  • {{ link }}
  • {% endfor %}
{% else %}

Keine ausgeblendeten Links

{% endif %}
Benachrichtigungs-Einstellungen
Außer-Betrieb ausblenden: {% if user.no_out_of_service %} Ja {% else %} Nein {% endif %}
Außer-Betrieb Ausnahmen: {% if user.out_of_service_exceptions and user.out_of_service_exceptions|length > 0 %} {{ user.out_of_service_exceptions|join(', ') }} {% else %} - {% endif %}
Wartung ausblenden: {% if user.no_maintenance %} Ja {% else %} Nein {% endif %}
Events ausblenden: {% if user.no_events %} Ja {% else %} Nein {% endif %}
Space offen ausblenden: {% if user.no_space_open %} Ja {% else %} Nein {% endif %}
Infra-Ausfälle ausblenden: {% if user.no_infra_downtime %} Ja {% else %} Nein {% endif %}
Infra-Ausfall Ausnahmen: {% if user.infra_downtime_exceptions and user.infra_downtime_exceptions|length > 0 %} {{ user.infra_downtime_exceptions|join(', ') }} {% else %} - {% endif %}
Update-Hinweise ausblenden: {% if user.no_update_notifications %} Ja {% else %} Nein {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}