Page not found (404)

Request Method: GET
Request URL: https://donboscobegusarai.com/contact

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

  1. admin/
  2. chaining/
  3. [name='store_home']
  4. news-detail/<slug:slug>/ [name='news_detail']
  5. blog-detail/<slug:slug>/ [name='blog_detail']
  6. about-us [name='about_us']
  7. academics [name='academics']
  8. certificate-view/<slug:slug>/ [name='certificate_view']
  9. certificate [name='certificate']
  10. latest-news [name='latest_news']
  11. blog [name='blog']
  12. our-gallery [name='our_gallery']
  13. contact-us [name='contact_us']
  14. apply-online [name='apply_online']
  15. gallery_filter [name='gallery_filter']
  16. logout [name='logout']
  17. ^media/(?P<path>.*)$
  18. ^static/(?P<path>.*)$

The current path, contact, 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.