{% extends "base.html" %} {% load wagtailcore_tags %} {% wagtail_site as current_site %} {% block content %}
{# include template "patterns/basics/headings/sp_variations/heading.html" #} {% trans "Thank you for joining!" as headingtext %} {% with type="component" htmltag="h1" title=headingtext %}
<{{htmltag}}>{{title}}
{% endwith %} {# end include template #} {% 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_education_level and not profile_settings.capture_education_level_on_reg %} {# include template "patterns/basics/headings/sp_variations/heading.html" #} {% trans "Let us know your birthday to get access to exclusive content." as headingtext %} {% with type="subheading" htmltag="p" title=headingtext %}
<{{htmltag}}>{{title}}
{% endwith %} {# end include template #}
{% csrf_token %} {% if profile_settings.activate_display_name and not profile_settings.capture_display_name_on_reg %}
{{ form.alias }} {{ form.alias.errors }}

{% trans "Springster values your online security, therefore we hide your username and allow you to comment and interact with the site anonymously. If you would like to interact with other people, like your friends to be able to see you as a username and not anonymous, update your username here" %}

{% endif %} {% if profile_settings.activate_dob and not profile_settings.capture_dob_on_reg %}
{{ form.date_of_birth }} {{ form.date_of_birth.errors}}
{% endif %} {% if profile_settings.activate_gender and not profile_settings.capture_gender_on_reg %}
{{ form.gender }} {{ form.gender.errors }}

({% trans "Only you will see this, but it's not mandatory to tell us" %})

{% endif %} {% if profile_settings.activate_education_level and not profile_settings.capture_education_level_on_reg %}
{{ form.education_level }} {{ form.education_level.errors}}

{% trans "Only you will see this." %}

{% endif %} {% trans "Skip" %}
{% else %} {# include template "patterns/basics/headings/sp_variations/heading.html" #} {% trans "Update profile to let us know your birthday to get access to exclusive content." as headingtext %} {% with type="subheading" htmltag="p" title=headingtext %}
<{{htmltag}}>{{title}}
{% endwith %} {# end include template #} {% trans "My Profile" %} {% trans "Homepage" %} {% endif %} {% endwith %}
{% endblock %}