{% extends "base.html" %} {% block title %}My Profile – Echo{% endblock %} {% block content %}

My Profile

Back to Dashboard
{% if not_found %}
User not found.
{% endif %} {% if message %}
{{ message }}
{% endif %} {% if error %}
{{ error }}
{% endif %} {% if profile_user %}
{% set role_value = (profile_user.role.value if profile_user.role else 'end_user') %} {% set role_label = (role_value | replace('_',' ') | title) %} {{ role_label }}
{% endif %}
{% endblock %}