{% 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 " }}

{% trans "Not set." as defaultText %}

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

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

{{ user.profile.mobile_number | default:defaultText}}

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

{{ user.profile.gender | default:defaultText }}

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

{{ user.profile.location | default:defaultText }}

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

{{ user.profile.education_level | default:defaultText }}

{% endif %}
{% if settings.profiles.UserProfilesSettings.show_email_field %} {% endif %}
{% endblock %}