{% extends "django_registration/registration_base.html" %} {% load staticfiles %} {% load i18n %} {% block title %}{% trans "Register for an account" %}{% endblock %} {% block content %} {% csrf_token %} {% for field in form %} {{ field.label_tag }} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %} {{ error }} {% endfor %}
{{ field.label_tag }} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %}
{{ error }}