Am 13.07.2017 um 22:44 schrieb Tim Graham:
The success_url of PasswordChangeView (actually the behavior comes from the inherited FormView) only accepts a URL, not a URL name. You can update to your code like this:from django.urls import reverse_lazy ... success_url=reverse_lazy('lori:pwd_done')
That works! Thank you very much! :-) Best regards, Carsten -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/3ba5d272-cbf9-266e-4e8b-d9f8fcd8a6c6%40cafu.de. For more options, visit https://groups.google.com/d/optout.

