Re: Django password_change

2011-06-24 Thread Mark L.
Thanx for the responses guys. This is what solved my problem. #url.py (r'^accounts/password/change/$', 'password_change', {}, 'password_change_form'), (r'^accounts/password/done/$', 'password_change_done', {}, password_change_done'), ...and added password_change_form.html and

Re: Django password_change

2011-06-23 Thread Yuri Piratello
I use in that project https://github.com/yuripiratello/nilo (r'^alterarSenha/$', 'nilo.views.alterarSenha'), My template: /templates/alterarSenha.html Att; Yuri Zanola Piratello = blog: http://yuri-piratello.blogspot.com msn:

Re: Django password_change

2011-06-23 Thread Eiji Kobayashi
Hi, Maybe you made a mistake, but your url says /account/password/change, but you put the password*.html files to /templates/registration. Shouldn't it be inside your project's templates/account directory? Maybe that is why you're getting a 404? Just a guess Eiji On Thu, Jun 23, 2011 at 11:53

Django password_change

2011-06-23 Thread Mark L.
Hey guys, I'm a newb to Django, but have some experience with Rails. Its fun to see the similarities and differences in both! After looking through https://docs.djangoproject.com/en/dev/topics/auth/#module-django.contrib.auth.views Under the section 'Other built-in views' I think password change