{% extends "auth/base.html" %} {% block title %}Profile - {{ super() }}{% endblock %} {% block header %}User Profile{% endblock %} {% block subtitle %}Manage your account information{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{{ user.username }}
{{ user.email|default('Not provided') }}
{{ user.id }}
{% if user.attributes %} {% for key, value in user.attributes.items() %} {% if key not in ['password_hash'] %}
{{ value }}
{% endif %} {% endfor %} {% endif %}
{{ current_time()|format_datetime('%Y-%m-%d') }}
Member Since
Active
Status
User
Role
Edit Profile Dashboard Logout
{% endblock %} {% block auth_links %} {% endblock %}