{% extends "registration/registration_base.html" %} {% load trans from i18n %} {% load crispy from crispy_forms_tags %} {% block title %} {% trans "Resend activation Email" %} {% endblock title %} {% block heading %}

{% trans "Resend activation Email" %}

{% endblock heading %} {% block content %}
{% csrf_token %} {{ form|crispy }}
{% endblock content %} {% comment %} **registration/resend_activation_form.html** Used to show the form users will fill out to resend the activation email. 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 `_ for information on how to display this in a template. {% endcomment %}