glon

Results 1 comments of glon

OK, I found what happened. ``` url(r'^pwd_reset/', include('password_reset.urls', namespace='pwd_reset', app_name='pwd_reset')), ``` should be ``` url(r'^pwd_reset/', include('password_reset.urls')), ``` **But, what caused this question is still a little bit confused**: when I...