{% extends "registration/registration_base.html" %} {% load trans from i18n %} {% load crispy from crispy_forms_tags %} {% block title %} {% trans "Register for an account" %} {% endblock title %} {% block heading %}
{% crispy form %}
{% endblock content %} {% comment %} **registration/registration_form.html** Used to show the form users will fill out to register. By default, has the following context: ``form`` The registration form. This will be an instance of some subclass of ``django.forms.Form``; consult `Django's forms documentation