Page not found (404)

Request Method: GET
Request URL: https://nauticalglobal.com/ourteam.html

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

  1. admin/
  2. [name='home']
  3. Service/(?P<slug>[-a-zA-Z0-9_]+)\Z [name='service']
  4. Services [name='services']
  5. Contact-us [name='contact_us']
  6. Articles [name='articles']
  7. Article/(?P<slug>[-a-zA-Z0-9_]+)\Z [name='article_details']
  8. About-us [name='about_us']
  9. career [name='career']
  10. career/(?P<slug>[-a-zA-Z0-9_]+)\Z [name='career_detail']
  11. error [name='custom_error']
  12. ^media/(?P<path>.*)$
  13. ^static/(?P<path>.*)$

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