Page not found (404)

Request Method: GET
Request URL: http://fancyshot.com/contacts/

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

  1. [name='index']
  2. cases/<str:case> [name='case']
  3. case-api/<str:action> [name='case-api']
  4. hi [name='hi']
  5. thanks [name='thanks']
  6. admin/
  7. send_email/ [name='send_email']
  8. presentation [name='presentation']
  9. ^media/(?P<path>.*)$
  10. admin/
  11. ^media/(?P<path>.*)$

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