{% extends "base.html" %} {% from 'components/ui.html' import page_header %} {% block content %} {% set actions %} {{ _('Edit Profile') }} {% endset %} {{ page_header( icon_class='fas fa-user-circle', title_text='My Profile', actions_html=actions, breadcrumbs=[ {'text': 'Profile'} ] ) }}
{{ current_user.email or '' }}
{{ current_user.primary_role_name | capitalize }}{{ current_user.username }}
{{ current_user.primary_role_name | capitalize }}
{{ current_user.created_at|user_date }}
{{ current_user.last_login|user_datetime if current_user.last_login else 'Never' }}