{% extends "base.html" %} {% block title %}{{ user.username }}{% endblock %} {% block subtitle %}{% trans %}user details{% endtrans %}{% endblock %} {% block content %}
{% trans %}Username{% endtrans %}
{{ user.username }}
{% trans %}UUID{% endtrans %}
{{ user.uuid }}
{% trans %}Created at{% endtrans %}
{{ user.created_at }}
{% if user.contact %} {% for name, value in user.contact.items() %}
{{ name | capitalize }}
{{ value }}
{% endfor %} {% endif %}
{{ macros.timeline(user.history, public_only=False) }}

Profile list

{% for profile in user.profiles %} {% endfor %}
{% trans %}Service{% endtrans %} {% trans %}Username{% endtrans %} {% trans %}Status{% endtrans %}
{{ profile.service.name }} {{ profile.username }} {{ macros.profile_status(profile) }}
{% endblock %} {% block actions %} {% trans %}Password reset{% endtrans %} {% endblock %}