{% load i18n %} {% load utilstags %}

{% trans "Details" %}

{% trans "Username" %} : {{user.username}}
{% trans "First name" %} : {{user.first_name}}
{% trans "Last name" %} : {{user.last_name}}
{% trans "Email" %} : {{user.email}}
{% trans "Administrator" %} : {% if user.is_superuser %} yes {% else %} no {% endif %}

Custom settings

{% if DARKMODE_ENABLED %} {% endif %}
{% trans "Show tab's title in pages:" %} :
{% trans "Show tenant's troubleshoot section:" %} :
{% trans "Show monitored element's troubleshoot section:" %} :
{% trans "Show tag's troubleshoot section:" %} :
{% trans "Always show left navigation window:" %} :
{% trans "Always show tag badges sorted by:" %} :
{% trans "Show 'last notable change' time in alarms list" %} :
{% trans "Dark-mode active" %}: :


Cambio password

{% if not can_change_password %}

* {% trans "I sistemi di autenticazione usati non consentono il cambio password da parte dell'utente." %} *

{% endif %}
{% trans "Old password" %}:
{% trans "New password" %}:
{% trans "Confirm" %}:


{% trans "User Icon" %}

{% trans "Groups" %}

{% with user.groups.all as groups %} {% if groups %}
    {% for g in groups %}
  • {{g.name}}
  • {% endfor %}
{% endif %} {% endwith %}

Enabled capabilities

    {% for c in USER_CAPABILITIES|sort_items %}
  • {{c}}
  • {% endfor %}