{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Registration" %} {% endblock %} {% load breadcrumbs %} {% block breadcrumbs %} {{ block.super }} {% breadcrumb_url 'Register' %} {% endblock %} {% block content %}

{% trans "Registration" %}

{% csrf_token %} {{ form.non_field_errors }} {% for field in form %}

{{ field.errors }} {{ field }}

{% endfor %}
{% endblock %}