From: Gael Le Mignot Date: Fri, 4 Jun 2021 09:09:46 +0000 (+0200) Subject: Fixed URL name for password reset X-Git-Tag: 2.1~66^2^2~40 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=2b06e70c06cc71b19de5433cc6de9994a7ac1b16;p=teleforma.git Fixed URL name for password reset --- diff --git a/teleforma/urls.py b/teleforma/urls.py index 108f8acd..31a41097 100644 --- a/teleforma/urls.py +++ b/teleforma/urls.py @@ -117,7 +117,7 @@ urlpatterns = [ url(r'^accounts/password_reset/$', PasswordResetView.as_view(template_name='registration/password_reset_form.html', email_template_name='registration/password_reset_email.html'), name="teleforma-password-reset"), url(r'^accounts/password_reset_done/$', PasswordResetDoneView.as_view( - template_name='registration/password_reset_done.html'), name="teleforma-password-reset-done"), + template_name='registration/password_reset_done.html'), name="password_reset_done"), url(r'^accounts/password_reset_confirm/(?P[A-Za-z0-9._-]+)/(?P[A-Za-z0-9._-]+)/$', PasswordResetConfirmView.as_view( template_name='registration/password_reset_confirm.html'), name="teleforma-password-reset-confirm"), url(r'^accounts/password_reset_complete/$', PasswordResetCompleteView.as_view(template_name='registration/password_reset_complete.html'),