{% extends "registration/registration_base.html" %} {% load url from future %} {% load i18n %} {% block title %}{% trans "Registration form" %}{% endblock %} {% block masthead %}

{% trans "Registration form" %}

{% endblock %} {% block content %}
{% csrf_token %} {{ form.non_field_errors }} {% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }}
{% endfor %}
{% endblock %}