{% extends "base.html" %} {% load wagtailsettings_tags gem_tags %} {% get_settings %} {% block content %}
{% trans "When you type comments your name will appear as:" %} {{ user.profile.alias | default:defaultText }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_dob %}{% trans "Date of birth:" %} {{ user.profile.date_of_birth | default:defaultText }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_gender %}{% trans "Gender:" %} {{ user.profile.gender|gender_display | default:defaultText }}
{% endif %} {% if settings.profiles.UserProfilesSettings.show_mobile_number_field and settings.profiles.UserProfilesSettings.country_code %}{% trans "Mobile number:" %} {{ user.profile.mobile_number | default:defaultText }}
{% endif %} {% if settings.profiles.UserProfilesSettings.show_email_field %}{% trans "Email Address:" %} {{ user.email | default:defaultText }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_location %}{% trans "Location:" %} {{ user.profile.location | default:defaultText }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_education_level %}{% trans "Education Level:" %} {{ user.profile.education_level | default:defaultText }}
{% endif %} {% trans "Update Profile" %}