我正在使用 django 1.5.1 和 django-registration 1.0。
我收到一个错误:
NoReverseMatch at /accounts/password/reset/
Reverse for 'django.contrib.auth.views.password_reset_done' with arguments '()' and keyword arguments '{}' not found.
Request Method: GET
Request URL: http://localhost:8000/accounts/password/reset/
Django Version: 1.5.1
Exception Type: NoReverseMatch
Exception Value:
Reverse for 'django.contrib.auth.views.password_reset_done' with arguments '()' and keyword arguments '{}' not found.
在我的 urls.py 中,我有:
url(r'^accounts/', include('registration.backends.default.urls', namespace='re gistration', app_name='registration')),
以前有人遇到过这个问题吗?