[Answer]-Registration_complete template not shown with 0.8 version of django-registration

1👍

I use this template for registration_form.html:

{% extends "base.html" %}
{% load i18n %}

{% block content %}
<form method="post" action=".">
    {% csrf_token %}
  {{ form.as_p }}

<input type="submit" value="{% trans 'Submit' %}" />
</form>
{% endblock %}

You can find more of those here :
https://github.com/nathanborror/django-registration/tree/master/registration/templates/registration

👤ltbesh

Leave a comment