{% extends "base.html" %} {% load i18n wagtailsettings_tags %} {% get_settings %} {% block content %}
{% trans "As you type your name comment will appear as:" %} {{ user.profile.alias | default:" Anonymous " }}
{% trans "Date of Birth: " %} {% 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 %}{% trans "Mobile Number: " %} {{ user.profile.mobile_number | default:"Not set" }}
{% endif %} {% if settings.profiles.UserProfilesSettings.show_email_field %}{% trans "Email Address:" %} {{ user.email | default:"Not set" }}
{% endif %}