summaryrefslogtreecommitdiff
path: root/yaksh/urls_password_reset.py
AgeCommit message (Collapse)Author
2018-04-02Upgrade Django from 1.9.5 to Django 1.10ankitjavalkar
- Change render_to_response usage to render
2017-02-01Forgot Password and Reset Issue Resolvedprathamesh
The problem was: We have included yaksh urls to the project urls with the namespace "yaksh". So whenever we call the url name i.e "yaksh:<url>" a reverse match is made. But for Forgot Password and Change Password we are using django's in-built functionality, where the reverse url is hardcoded. So the reverse match fails as the namespace is not specified! To resolve this, created a urls_password_reset URL dispatcher file and included to the project urls.