Hi! I am trying to add password reset function to my application. But when I am trying to process the email with confirmation link:
code: # Password resend group (r'^reset/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm'), Also I copied template reset_password_confirm.html to my register/ folder in my templates But when I am trying to process the url = http://localhost:8000/reset/1-29s-f1e5514c29ac724ad0c2/ Getting NoReverseMatch at /reset/1-29s-f1e5514c29ac724ad0c2/ Reverse for '<function password_reset_complete at 0x107ed70>' with arguments '()' and keyword arguments '{}' not found. Request Method:GETRequest URL: http://localhost:8000/reset/1-29s-f1e5514c29ac724ad0c2/Exception Type: NoReverseMatchException Value: Reverse for '<function password_reset_complete at 0x107ed70>' with arguments '()' and keyword arguments '{}' not found. Exception Location:/usr/local/lib/python2.5/site-packages/django/core/urlresolvers.py in reverse, line 243Python Executable:/usr/bin/pythonPython Version:2.5.2Python Path:['/Users/oleg/Sites/loginregister', '/usr/local/lib/python2.5/site-packages/MySQL_python-1.2.2-py2.5-macosx-10.3-i386.egg', '/usr/local/lib/python2.5/site-packages/setuptools-0.6c9-py2.5.egg', '/usr/local/lib/python2.5/site-packages/HarvestMan-2.0.4betadev-py2.5.egg', '/usr/local/lib/python2.5/site-packages/pyparsing-1.5.1-py2.5.egg', '/usr/local/lib/python2.5/site-packages/sgmlop-1.1.1_20040207-py2.5-macosx-10.3-i386.egg', '/Users/oleg/Sites', '/Users/oleg/devnavikola', '/Users/oleg/Sites/loginregister', '/usr/local/lib/python25.zip', '/usr/local/lib/python2.5', '/usr/local/lib/python2.5/plat-darwin', '/usr/local/lib/python2.5/plat-mac', '/usr/local/lib/python2.5/plat-mac/lib-scriptpackages', '/usr/local/lib/python2.5/lib-tk', '/usr/local/lib/python2.5/lib-dynload', '/usr/local/lib/python2.5/site-packages', '/usr/local/lib/python2.5/site-packages/PIL']Server time:Fri, 23 Jan 2009 13:50:13 -0600 PLEASE HELP!!!!!!!!!! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---