{% 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 }}

Profile list

{% for profile in user.profiles %} {% endfor %}
{% trans %}Service{% endtrans %} {% trans %}Username{% endtrans %} {% trans %}Status{% endtrans %}
{{ profile.service.name }} {{ profile.username }} {{ profile.status }}
{{ macros.timeline(user.history, public_only=False) }}
{% endblock %}