{% extends "base.html" %} {% block title %}{{ profile.username }}{% endblock %} {% block subtitle %} {% trans %}profile details{% endtrans %} {% endblock %} {% block content %}
{% trans %}Username{% endtrans %}
{{ profile.username }}
{% if profile.user %}
{% trans %}Owner{% endtrans %}
{{ profile.user.username }}
{% endif %}
{% trans %}UUID{% endtrans %}
{{ profile.uuid }}
{% trans %}Status{% endtrans %}
{{ macros.profile_status(profile) }}
{% trans %}Created at{% endtrans %}
{{ profile.created_at }}
{{ macros.timeline(profile.history, public_only=False) }}
{% endblock %} {% block actions %} {% for action in profile.actions %} {{ action.label | capitalize }} {% endfor %} {% endblock %}