#15228: admin/.../password/template_error ----------------------------+----------------------------------------------- Reporter: CarlFK | Owner: nobody Status: new | Milestone: Component: Authentication | Version: 1.3-beta Keywords: | Triage Stage: Unreviewed Has patch: 0 | ----------------------------+----------------------------------------------- stock django user auth, trying to change password = error.
http://localhost:8080/admin/auth/user/1/ "Use '[algo]$[salt]$[hexdigest]' or use the _change password form_" click abc<tab>abc click done: RuntimeError at /admin/auth/user/1/password/template_error You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redirect to the slash URL while maintaining POST data. Change your form to point to localhost:8080/admin/auth/user/1/password/template_error/ (note the trailing slash), or set APPEND_SLASH=False in your Django settings. -- Ticket URL: <http://code.djangoproject.com/ticket/15228> Django <http://code.djangoproject.com/> The Web framework for perfectionists with deadlines. -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
