Page not found (404)

Request Method: GET
Request URL: https://www.edsltd.ca/contact.asp

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

  1. admin/
  2. sitemap.xml [name='django.contrib.sitemaps.views.sitemap']
  3. [name='home']
  4. homepage [name='homepage']
  5. about [name='about']
  6. gallery [name='gallery']
  7. services [name='services']
  8. services/<slug:service> [name='services_detail']
  9. projects [name='projects']
  10. projects/<slug:slug> [name='project_detail']
  11. contact [name='contact']
  12. blog [name='blog']
  13. blog/<slug:slug> [name='blog_detail']
  14. blog_post_comment [name='post_comment']
  15. ^static/(?P<path>.*)$
  16. ^media/(?P<path>.*)$
  17. tinymce/
  18. ^static/(?P<path>.*)$
  19. ^media/(?P<path>.*)$

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