I am following the documentation and I am getting a NoReverseMatch error when I click on the page to restart my password.
NoReverseMatch at /resetpassword/ Reverse for 'password_reset_done' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []
urls.py:
(r'^resetpassword/passwordsent/$', 'django.contrib.auth.views.password_reset_done'),
(r'^resetpassword/$', 'django.contrib.auth.views.password_reset', name="reset_password"),
(r'^reset/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>,+)/$', 'django.contrib.auth.views.password_reset_confirm'),
(r'^reset/done/$', 'django.contrib.auth.views.password_reset_complete'),
Here is the code that calls this url in my base.html template:
<a href="{% url 'reset_password' %}">Reset Password</a>
I have been working at this for hours. (I'm a beginner!) Any help would be much appreciated, thanks!