Page not found (404)

Request Method: GET
Request URL: http://www.camfindlay.com/contact/

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

  1. admin/
  2. add_question [name='add_question-page']
  3. [name='home-page']
  4. logout [name='logout-page']
  5. login [name='login-page']
  6. send_email [name='send-email-page']
  7. line [name='send-line']
  8. register [name='register-page']
  9. testing [name='test-page']
  10. review [name='review-page']
  11. read_review/<int:id> [name='read-review-page']
  12. read_sheet [name='answer_sheet-page']
  13. test_graph [name='test-graph']
  14. ^static\/(?P<path>.*)$
  15. ^media\/(?P<path>.*)$
  16. ^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.