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

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

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