Okay, looks like this is a bug. I've never created a ticket for Django
but I'll look it up. For now the work around is to change your url
config to look something like this:
url(r'^password/change/$', auth_views.password_change,
{'post_change_redirect': 'registration/
registration_change_done.html'}, name='auth_password_change')
where 'post_change_redirect' is the path to the template for the
registration_change_done view. Hope this helps.
On Oct 8, 11:56 pm, "Chris Spencer" <
chriss...@gmail.com> wrote:
> Yeah, this has been a big let down. What I'd hoped would be a few
> minutes setting up a basic site framework has turned into several
> hours wasted on boilerplate. The lack of docs, templates, and strange
> bugs like these leads me to think that django-registration isn't fully
> baked. I'm simply writing my own at this point, since I can't find a
> single example through Google of someone who's used that portion of
> registration successfully.
>
> Chris
>