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

{% trans "Edit Profile" %}

{% csrf_token %} {% if settings.profiles.UserProfilesSettings.activate_display_name %}
{{ form.alias }} {{ form.alias.errors}} {% trans "We value your online security, therefore we hide your username and allow you to comment and interact with the site with a display name." %}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_dob %}
{{ form.date_of_birth }} {{ form.date_of_birth.errors}}
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_gender %}
{{ form.gender }} {{ form.gender.errors}} {% trans "Only you will see this" %}.
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_location %}
{{ form.location }} {{ form.location.errors}} {% trans "Only you will see this" %}.
{% endif %} {% if settings.profiles.UserProfilesSettings.activate_education_level %}
{{ form.education_level }} {{ form.education_level.errors}} {% trans "Only you will see this" %}.
{% endif %} {% if settings.profiles.UserProfilesSettings.show_mobile_number_field and settings.profiles.UserProfilesSettings.country_code %}
{{ form.mobile_number }} {{ form.mobile_number.errors }} {% trans "(e.g. 0754556789)" %}
{% endif %} {% if settings.profiles.UserProfilesSettings.show_email_field %}
{{ form.email}} {{ form.email.errors }} {% trans "(e.g. example@foo.com)" %}
{% endif %}
{% endblock %}