{% extends "base.html" %} {% block links %} {% endblock %} {% block content %}
name
{{ user.name }}
registered
{{ user.createdAt | htime_dt }}

nodes
{% for node in userNodeList %} {% endfor %}
name last connect online
{{ node.givenName }} {{node.lastSeen | htime_dt }} {{node.online | fancyBool | safe}}

pre auth keys
{% for key in preauthKeys %} {% endfor %}
name created expiration attributes
{{ key.key[:10] }}… {{key.createdAt | htime_dt }} {{key.expiration | htime_dt }} {% if key.ephemeral %} ephemereal {% endif %} {% if key.reusable %} reusable {% endif %} {% if key.used %} used {% endif %}
{% endblock %} {% block scripts %} {% endblock %}