{% extends "base.html" %} {% load i18n %} {% load url from future %} {% block extrahead %} {% endblock %} {% block title %}{% trans 'Registration' %}{% 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 %}

{% trans 'Registration' %}

{{ form.as_p }}
{% endblock %}