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

{% trans "Thank you for joining!" %}

{% with profile_settings=settings.profiles.UserProfilesSettings %} {% if profile_settings.activate_dob and not profile_settings.capture_dob_on_reg or profile_settings.activate_display_name and not profile_settings.capture_display_name_on_reg or profile_settings.activate_gender and not profile_settings.capture_gender_on_reg or profile_settings.activate_location and not profile_settings.capture_location_on_reg or profile_settings.activate_education_level and not profile_settings.capture_education_level_on_reg %}
{% trans "Let us know more about yourself to get access to exclusive content." %}
{% csrf_token %} {% if profile_settings.activate_dob and not profile_settings.capture_dob_on_reg %}
{{ form.date_of_birth.errors}} {{ form.date_of_birth }}
{% endif %} {% if profile_settings.activate_display_name and not profile_settings.capture_display_name_on_reg %}
{{ form.alias.errors }} {{ form.alias }} {% 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 profile_settings.activate_gender and not profile_settings.capture_gender_on_reg %}
{{ form.gender.errors }} {{ form.gender }} {% trans "Only you will see this" %}
{% endif %} {% if profile_settings.activate_location and not profile_settings.capture_location_on_reg %}
{{ form.location.errors }} {{ form.location }} {% trans "Only you will see this" %}
{% endif %} {% if profile_settings.activate_education_level and not profile_settings.capture_education_level_on_reg %}
{{ form.education_level.errors }} {{ form.education_level }} {% trans "Only you will see this" %}
{% endif %}
{% endif %} {% endwith %}
{% trans "Profile" %} {% trans "Home Page" %}
{% endblock %}