{% extends "base.html.j2" %} {% block page_content %}

 

user-image

{{ title }}

{{ user.role.name }} {% if user.confirmed %} confirmed {% else %} unconfirmed {% endif %}

{{ user.about_me }}

 
  • Username: {{ user.username }}
  • Email: {{ user.email }}
  • Id: {{ user.id }}
  • Hashid: {{ user.hashid }}
  • Member since: {{ user.member_since.strftime('%Y-%m-%d') }}
  • Last seen: {% if user.last_seen %}{{ user.last_seen.strftime('%Y-%m-%d') }}
  • {% endif %}
{% endblock page_content %} {% block modals %} {{ super() }} {% endblock modals %} {% block scripts %} {{ super() }} {% endblock scripts %}