1👍
It looks to me as though you need a trailing slash on the post_reset_redirect
url. Have you tried that? At the moment, /account/password-reset-done
won’t match r'^account/password-reset-done/$'
because the /
in that is compulsory.
See example request 4 in the Django url dispatcher documentation: https://docs.djangoproject.com/en/dev/topics/http/urls/#example
Source:stackexchange.com