From 17c15d797fdab0ed5a6a2b56add59d4402654914 Mon Sep 17 00:00:00 2001 From: jnga Date: Fri, 7 Jul 2017 13:28:47 -0400 Subject: [PATCH] Fix bug where the password reset page failed to appear. (see #666) --- .../plantshare/templates/registration/password_reset_email.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gobotany/plantshare/templates/registration/password_reset_email.html b/gobotany/plantshare/templates/registration/password_reset_email.html index 42ee76b28..454948f47 100644 --- a/gobotany/plantshare/templates/registration/password_reset_email.html +++ b/gobotany/plantshare/templates/registration/password_reset_email.html @@ -4,7 +4,7 @@ {% trans "Please go to the following page and choose a new password:" %} {% block reset_link %} -{{ protocol }}://{{ domain }}{% url 'django.contrib.auth.views.password_reset_confirm' uidb64=uid token=token %} +{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %} {% endblock %} {% trans "Your username is:" %} {{ user.get_username }}