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

{% trans "Edit your Profile" %}

{% csrf_token %} {{ form.non_field_errors }} {% if settings.profiles.UserProfilesSettings.activate_display_name %}
{{ form.alias.errors }} {{ form.alias }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_dob %}
{{ form.date_of_birth }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_gender %}
{{ form.gender.errors }} {{ form.gender }}
{% endif %} {% if settings.profiles.UserProfilesSettings.show_mobile_number_field and settings.profiles.UserProfilesSettings.country_code %}
{{ form.mobile_number.errors }} {{ form.mobile_number }}

{% trans "(e.g. 0914556789)" %}

{% endif %} {% if settings.profiles.UserProfilesSettings.show_email_field %}
{{ form.email.errors }} {{ form.email}}

{% trans "(e.g. example@foo.com)" %}

{% endif %} {% if settings.profiles.UserProfilesSettings.activate_location %}
{{ form.location.errors}} {{ form.location }}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_education_level %}
{{ form.education_level }} {{ form.education_level.errors}}
{% endif %}
{% endblock %}