I've installed Django-Registration-Redux app in my project and set up the default one step registration backend and it worked so far. Now i want to extend the functionality of my app by adding password change mechanism. Any idea or link where I can start looking.
Thanks in advance
PD: Django-registration-redux documentation is not related to this topic.
The book 'Tango With Django' by Leif Azzopardi and David Maxwell contains a nice example using 'Django-Registration-Redux app' in Chapter 11. This chapter explains in detail - the process to install/setup this module and configure settings, views & urls pattern in clear and concise manner.
According to the book, the module 'Django-Registration-Redux' does not provide templates for the urls it exposes. You need to create these templates manually - because these tend to be application specific. (You should create a directory named
registration
in your project's template directory to store these template files.) You should also see Anders Hofstee's Templates to take some hints to build your own templates. Mine is as follows (based on his template):Assuming you have configured the module in the project's
settings.py
, you should include the following url in theurl_patterns
list found in your project'surls.py
file-As explained by the earlier answers, the url to change the password for a logged in user is
http://<projects_root_url>/accounts/password/change
. You should provide this url to the logged in user for access by updating the menu item. Continuing with the book's examples I have updated my base template to expose the Password Change url. Consider the following code:I hope this helps! If not, then I would highly recommend you to go through the book mentioned above! Easy examples, simple to understand instructions, and most importantly, the example works without putting too much effort in any configuration.