{% extends "base-2col.html" %} {% load i18n %} {% block title %}{% trans "Registration" %}{% endblock %} {% block breadcrumbs %}{% trans "Accounts" %} / {% trans "Sign up" %}{% endblock %} {% block content %}

{% trans "Sign up" %}

{% if form.errors %}

{% trans "Please correct the errors below" %}:

{% endif %}
{% if form.firstname.errors %} {{ form.firstname.errors|join:", " }}{% endif %}
{{ form.firstname|safe }}
{% if form.lastname.errors %} {{ form.lastname.errors|join:", " }}{% endif %}
{{ form.lastname|safe }}
{% if form.username.errors %} {{ form.username.errors|join:", " }}{% endif %}
{{ form.username|safe }}
{% if form.email.errors %} {{ form.email.errors|join:", " }}{% endif %}
{{ form.email|safe }}
{% if form.password1.errors %} {{ form.password2.errors|join:", " }}{% endif %}
{{ form.password1|safe }}
{% if form.password2.errors %} {{ form.password2.errors|join:", " }}{% endif %}
{{ form.password2|safe }}
{% if form.tos.errors %} {{ form.tos.errors|join:", " }}{% endif %}
{{ form.tos}}
{% endblock %} {% block aside %}

{% trans "Hint" %}

{% trans "Fill out the form to the right (all fields are required), and your account will be created; you'll be sent an email with instructions on how to finish your registration." %}
{% endblock %}