vote up 1 vote down star

I'd like to override Django's administrative "Change Password" page (change_password.html). As such, I've placed Django's "/contrib/admin/templates/registration/password_change_form.html" in my project's "/templates/admin/registration/password_change_form.html" directory. Unfortunately, this doesn't seem to do the trick.

At this point, I'm stumped. I'm guessing it has something to do with Django's /contrib/auth/urls.py file (which directs the the admin change password call to "django.contrib.auth.views.password_change"), but admin template changes have been trivial so far and I'm surprised this one doesn't follow suit.

Any thoughts?

flag

What does your settings.TEMPLATE_DIRS look like? – bchhun Jan 15 at 16:42
It has "'./templates',". I'm not sure that's the problem. I have a "/templates/admin" directory and that's not explicitly defined in the TEMPLATE_DIRS – Huuuze Jan 15 at 16:48

1 Answer

vote up 2 vote down check

This is not tested, but a quick look at the source indicates you should place the template in:

/templates/registration/password_change_form.html

Note bene: there is no 'admin/' in there.

link|flag
Where did you see that as the solution? I must've overlooked it. – Huuuze Jan 15 at 16:51
I read the source. Of course, on a second pass, I found it in the Djanog docs a docs.djangoproject.com/en/dev/… – Peter Rowell Jan 15 at 16:56
Look at the parameter list of the function password_change in django/contrib/auth/views.py – ayaz Jan 15 at 16:58
Don't need to look at any of that, just look at the paths themselves. There's no "admin/" after "templates/" in the original location of the file, why would you add one and expect it to work? – Carl Meyer Jan 15 at 21:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.