Page not found (404)

Request Method: GET
Request URL: http://localhost:8002/service/index.html

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

  1. [name='home']
  2. service/ [name='service']
  3. team/ [name='team']
  4. report/ [name='report']
  5. project/ [name='project']
  6. ^project/download/quote/(?P<project_id>\S+)/$ [name='quote']
  7. ^project/download/invoice/(?P<project_id>\S+)/$ [name='invoice']
  8. signup/ [name='signup']
  9. sent/ [name='activation_sent']
  10. activate/<slug:uidb64>/<slug:token>/ [name='activate']
  11. contact/ [name='contact']
  12. result/ [name='result']
  13. admin/
  14. ^accounts/
  15. ^.well-known/
  16. ^media\/(?P<path>.*)$
  17. ^static\/(?P<path>.*)$

The current path, service/index.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.