From 8427da2f08ae590b427027abe36351018c685f8e Mon Sep 17 00:00:00 2001 From: prathamesh Date: Wed, 1 Feb 2017 13:00:34 +0530 Subject: Forgot Password and Reset Issue Resolved 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:" 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. --- yaksh/templates/registration/password_change_form.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 yaksh/templates/registration/password_change_form.html (limited to 'yaksh/templates/registration/password_change_form.html') diff --git a/yaksh/templates/registration/password_change_form.html b/yaksh/templates/registration/password_change_form.html new file mode 100644 index 0000000..b618410 --- /dev/null +++ b/yaksh/templates/registration/password_change_form.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} + +{% block pagetitle %} Change Password {% endblock %} + +{% block content %} +
+ {% csrf_token %} +
+ + {{ form }} +
+
+
+
+
+{% endblock content %} -- cgit