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

authentication info


full name
{{ auth.full_name }}
username
{{ auth.username }}
email
{{ auth.email }}
groups
{% if not auth.groups[0] or auth.groups[0] in config['ADMIN_GROUPS'] %} {% else %} {% endif %} {{ auth.groups[0] | default('no group')}}
{% for group in auth.groups[1:] | default([]) |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 %}