Piyush Maurya
Piyush Maurya

Reputation: 2015

django-rest-auth : email verification failed, giving error

ImproperlyConfigured

URL: /rest-auth/registration/account-confirm-email/[key]

TemplateResponseMixin requires either a definition of template_name or an implementation of get_template_names()

I am new to Django.

Upvotes: 3

Views: 1183

Answers (1)

DevWaweru
DevWaweru

Reputation: 21

Paste this code as the last line un urls.py It will handle all verification urls

url(r'^accounts/', include('allauth.urls')),

Upvotes: 2

Related Questions