{% extends "base.html" %} {% block content %}

authentication info


full name
{{ auth.full_name }}
username
{{ auth.username }}
email
{{ auth.email }}
groups
{% if auth.groups[0] in config['ADMIN_GROUPS'] %} {% else %} {% endif %} {{ auth.groups[0]}}
{% for group in auth.groups[1:] |sort %}
 
{% if group in config['ADMIN_GROUPS'] %} {% else %} {% endif %} {{ group }}
{% endfor %}
access level
{% if auth.isAdmin %} ADMIN {% else %} USER {% endif %}

your devices

registered
last event
online
 
{% for node in userNodeList %}
{{ node.givenName}}
{{node.createdAt | htime_dt }}
{{node.lastSeen | htime_dt }}
{{node.online | fancyBool | safe }}
{% endfor %} {% endblock %}