hasen's tech life

Twitter: @hasen

DjangoでReverse for 'password_reset_confirm' not foundというエラーが出たので対応した.

# DjangoでReverse for 'password_reset_confirm' not foundというエラーが出たので対応した.

> Reverse for 'password_reset_confirm' not found. 'password_reset_confirm' is not a valid view function or pattern name.
$ vi APP_NAME/urls.py
++ url(r'^', include('django.contrib.auth.urls')),

参考: django password reset NoReverseMatch error