<%! from django.utils.translation import ugettext as _ %> {% extends "registration/base.html" %} {% block title %}${_("Sign up")}{% endblock %} {% block content %} {% if form.errors %}

${_("Please correct the errors below: {{ form.non_field_errors }}")}

{% endif %}

${_("Create an account")}

{% csrf_token %}

{% if form.username.errors %}

{{ form.username.errors.as_text }}

{% endif %} {{ form.username }}

{% if form.email.errors %}

{{ form.email.errors.as_text }}

{% endif %} {{ form.email }}

{% if form.password1.errors %}

{{ form.password1.errors.as_text }}

{% endif %} {{ form.password1 }}

{% if form.password2.errors %}

{{ form.password2.errors.as_text }}

{% endif %} {{ form.password2 }}

{% endblock %} {% block content-related %}

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

${_("We'll only use your email to send you signup instructions. We hate spam " "as much as you do.")}

${_("This account will let you log into the ticket tracker, claim tickets, " "and be exempt from spam filtering")}.

{% endblock %}