{% load smart_if %} {% load i18n %} {% if request.is_include_virtual == False %}
{% trans "MediaWiki User Registration" %}
{% endif %}
{% if request.is_include_virtual %}
{% else %} {% endif %} {% with form as f %} {{ f.next }}

{% trans "Basic information" %}

{% trans "Your Name" %}

{% trans "1) Real name - required for the Wiki, but not shown on the forum by default" %}

{{f.first_name}} {% if f.first_name.errors %}

{{ f.first_name.errors|join:", " }}

{% endif %}
{{f.last_name}} {% if f.last_name.errors %}

{{ f.last_name.errors|join:", " }}

{% endif %}
{{f.user_title}} {% if f.user_title.errors %}

{{ f.user_title.errors|join:", " }}

{% endif %}

{% trans "2) Forum screen name" %}

{% trans "Just skip this to use your full name at the forum, otherwise please check below" %}

{{f.use_separate_screen_name}}

{{f.screen_name}}

{% if f.screen_name.errors %}

{{ f.screen_name.errors|join:", " }}

{% endif %}

{% trans "Please remember that forum screen name is not your login name.
Screen name allows you stay anonymous at the forum - you can change it at any time too. Login name cannot be changed." %}

{% trans "Update subscription" %}

{% trans "receive updates motivational blurb" %}

{{f.subscribe}} {% if f.subscribe.errors %}

{{ f.subscribe.errors|join:", " }}

{% endif %}

{% trans "Almost there..." %}

{% trans "recaptcha explained" %}

{{f.recaptcha.errors|join:", "}}

{{f.recaptcha}}
{% endwith %} {% comment %} {{ previous_fields|safe }} {% endcomment %}