Contraseña actual, nuevo password, repetir nuevo password
Por lo visto django lo incorpora pero como soy nuevo en este lenguaje estoy aplicandolo sin suerte ...
Cita:
Lei eso por ej pero no me queda claro, aparte no quiero incluir todas las urls de auth si no solo el cambio de password.If you have a site where users have the traditional username/password combination, you've got to provide some way to let users change their password. Luckily, this is fairly easy to do with Django. The auth app comes with a password_change view that does what you'd probably expect.
It's also fairly easy to set up. You add a line similar to the following to your root URLConf:
url(r'^accounts/', include('django.contrib.auth.urls')),
You also have to set up some additional templates (e.g. registration/password_change_form.html), but once you've done that, users can change their password using a form that looks something like this:
It's also fairly easy to set up. You add a line similar to the following to your root URLConf:
url(r'^accounts/', include('django.contrib.auth.urls')),
You also have to set up some additional templates (e.g. registration/password_change_form.html), but once you've done that, users can change their password using a form that looks something like this:
Gracias.