You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.
Therefore, we will cause following errors when users access to Password change view.
django.core.urlresolvers.NoReverseMatch: Reverse for 'password_reset_done' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []
The text was updated successfully, but these errors were encountered:
The previous version define views of django.auth with 'auth_' prefix.
This cause some issue on djago 1.6 thus I add three new options to
prevent auto defining the urls and regulating the url name
- `REGISTRATION_DJANGO_AUTH_URLS_ENABLE`
If it is `False`, views of django.auth are not defined with
django-inspectional-permission. Users must define these view
manually. (Default: `True`)
- `REGISTRATION_DJANGO_AUTH_URL_NAME_PREFIX`
It is used as a prefix string of django.auth views. Set this 'auth_'
for backward compatibility. (Default: '')
- `REGISTRATION_DJANGO_AUTH_URL_NAME_SUFFIX`
It is used as a suffix string of django.auth views. Set this ''
for backward compatibility. (Default: '')
Password reset done view is named
auth_password_reset_done
on urls.py.https://github.com/lambdalisue/django-inspectional-registration/blob/master/src/registration/urls.py#L48
However, django seems to recommend to name
password_reset_done
.https://github.com/django/django/blob/1.6.5/django/contrib/auth/views.py#L142
Therefore, we will cause following errors when users access to Password change view.
The text was updated successfully, but these errors were encountered: