{% extends "base.html" %} {% load i18n wagtailsettings_tags %} {% get_settings %} {% block content %}

{% trans "Hello " %}{{ user.profile.migrated_username|default:user.username }}

{{ user.profile.alias | default:" Anonymous " }}

{% if user.profile.date_of_birth %} {{ user.profile.date_of_birth | date:"M d, Y" }} {% else %} {% trans " Not set." %} {% endif %}

{% if settings.profiles.UserProfilesSettings.show_mobile_number_field and settings.profiles.UserProfilesSettings.country_code %}

{{ user.profile.mobile_number | default:"Not set" }}

{% endif %} {% if settings.profiles.UserProfilesSettings.activate_gender %}

{{ user.profile.gender | default:"Not set" }}

{% endif %} {% if settings.profiles.UserProfilesSettings.activate_location %}

{{ user.profile.location | default:"Not set" }}

{% endif %} {% if settings.profiles.UserProfilesSettings.activate_education_level %}

{{ user.profile.education_level | default:"Not set" }}

{% endif %}
{% if settings.profiles.UserProfilesSettings.show_email_field %} {% endif %}
{% trans "log out" %} {% trans "Edit My Profile" %} {% trans "Change My Password" %}
{% endblock %}