{% extends "base.html" %} {% load i18n %} {% block pagetitle %}{% trans 'Create account' %}{% endblock %} {% block content %}
{% csrf_token %}
{% if form.errors %}

{% blocktrans count form.errors.items|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{% endif %}
{{ form.non_field_errors }}
{% for field in form %}
{{ field.label_tag }}
{{ field.errors }}
{{ field }}
{% endfor %}

{% endblock %}