[Fixed]-Django registration redux template rendering promblem

1👍

The base template that you are using has the following link:

<a href="{% url 'index' %}">{% trans "Home" %}</a>

You can either remove this link, or add a pattern named ‘index’ to your urls. For example, you could do:

url(r'^$', TemplateView.as_view(template_name="index.html"), name='index'),

If you add the above url, remember the import

from django.views.generic import TemplateView

Leave a comment