Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:8001/accounts/password/reset/

Using the URLconf defined in whg.urls, Django tried these URL patterns, in this order:

  1. [name='home']
  2. home/<str:version>/ [name='home-version']
  3. areas/
  4. collections/
  5. datasets/
  6. elastic/
  7. main/
  8. places/
  9. resources/
  10. search/
  11. guides/
  12. teaching/ [name='teaching']
  13. public_data/ [name='public-lists']
  14. profile/ [name='profile-edit']
  15. dashboard/ [name='dashboard']
  16. dashboard_user/ [name='dashboard-user']
  17. dashboard_admin/ [name='dashboard-admin']
  18. about/ [name='about']
  19. builder_single/ [name='builder-single']
  20. builder_multiple/ [name='builder-multiple']
  21. contributing/ [name='contributing']
  22. credits/ [name='credits']
  23. licensing/ [name='licensing']
  24. system/ [name='system']
  25. people/ [name='people']
  26. partners/ [name='partners']
  27. publications/ [name='publications']
  28. usingapi/ [name='usingapi']
  29. api/ [name='api']
  30. downloads/ [name='downloads']
  31. build/ [name='build']
  32. builder/ [name='builder']
  33. pipeline/ [name='pipeline']
  34. main_regions/ [name='main-regions']
  35. journeys_routes/ [name='journeys-routes']
  36. modal_home/ [name='modal-home']
  37. announcement/create/ [name='announcement-create']
  38. announcement_delete/<int:pk>/ [name='announcement-delete']
  39. announcement/update/<int:pk>/ [name='announcement-update']
  40. announcements/ [name='announcements-list']
  41. comment/<int:rec_id> [name='comment-create']
  42. contact/ [name='contact']
  43. success/ [name='success']
  44. status/ [name='status']
  45. create_link/ [name='create-link']
  46. api/
  47. remote/
  48. accounts/ register/ [name='register']
  49. accounts/ login/ [name='login']
  50. accounts/ logout/ [name='logout']
  51. accounts/ confirm_email/<str:token>/ [name='confirm-email']
  52. accounts/ confirmation_sent/ [name='confirmation-sent']
  53. accounts/ confirmation_success/ [name='confirmation-success']
  54. accounts/ password_reset/ [name='password_reset']
  55. accounts/ password_reset/done/ [name='password_reset_done']
  56. accounts/ reset/<uidb64>/<token>/ [name='password_reset_confirm']
  57. accounts/ reset/done/ [name='password_reset_complete']
  58. accounts/ password_change/ [name='password_change']
  59. accounts/ password_change/done/ [name='password_change_done']
  60. admin/
  61. captcha/
  62. dlcelery/ [name='dl_celery']
  63. task_progress/<str:taskid>/ [name='task-progress']
  64. ^CDNfallbacks/(?P<path>.*)$
  65. ^media/(?P<path>.*)$
  66. ^media/(?P<path>.*)$

The current path, accounts/password/reset/, didn’t match any of these.

You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.