{% extends 'base.html' %} {% comment %} # sso_client/templates/sso_client/member_dashboard.html {% endcomment %} {% block content %}

Welcome back, {{ user.first_name|default:user.username }}! ๐Ÿ‘‹

{% if user.organization_name %} {{ user.organization_name }} ยท {{ user.get_role_display }} {% else %} Member Dashboard {% endif %}

{{ user.get_full_name }}

Account Status

{% if user.is_email_verified %} Verified โœ“ {% else %} Pending {% endif %}

Your Role

{{ user.get_role_display }}

Member Since

{{ user.created_at|date:"M Y" }}

Last Updated

{{ user.updated_at|date:"M d" }}

{{ user.get_full_name }}

{{ user.get_full_name|default:user.username }}

{{ user.email }}

{% if user.organization_name %}
{{ user.organization_name }}
{% endif %}
{{ user.get_role_display }}
{% if user.is_email_verified %}
Email Verified
{% else %}
Email Not Verified
{% endif %} {% if user.is_phone_verified %}
Phone Verified
{% endif %}

Profile Information

{{ user.username }}

{{ user.email }}

{{ user.first_name|default:"Not set" }}

{{ user.last_name|default:"Not set" }}

{% if user.phone_number %}

{{ user.phone_number }}

{% endif %} {% if user.date_of_birth %}

{{ user.date_of_birth|date:"F d, Y" }}

{% endif %} {% if user.country %}

{{ user.country }}

{% endif %} {% if user.region %}

{{ user.region }}

{% endif %} {% if user.organization_id %}

{{ user.organization_name }}

ID: {{ user.organization_id }}

{% endif %} {% if user.bio %}

{{ user.bio }}

{% endif %}

Account Details

Onehux User ID:

{{ user.onehux_user_id|default:"N/A" }}

Account Created:

{{ user.created_at|date:"F d, Y" }}

Last Updated:

{{ user.updated_at|date:"F d, Y" }} at {{ user.updated_at|time:"g:i A" }}

Last Synced:

{{ user.last_synced_at|date:"F d, Y" }} at {{ user.last_synced_at|time:"g:i A" }}

Quick Actions

{% endblock content %}