Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:8081/pages/index/code/forgetpassword

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

  1. admin/
  2. ^ ^api/tutorials$
  3. ^ ^api/tutorials/(?P<pk>[0-9]+)$
  4. ^ ^api/tutorials/published$
  5. ^ ^api/stock/(?P<name>\w{0,50})/$
  6. ^ register [name='register']
  7. ^ login [name='login']
  8. ^ home [name='homepage']
  9. ^ logout [name='logout']
  10. ^ bkinfo [name='bkinfo']
  11. ^ bk_action/<str:bk_id>/ [name='bk_action']
  12. ^static\/(?P<path>.*)$

The current path, pages/index/code/forgetpassword, 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.