Page not found (404)

Request Method: GET
Request URL: http://new.orangeumc.org/pastor's

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

  1. ^/?$
  2. ^calendar/$
  3. ^calendar/(?P<year>\d+)/(?P<month>[^/]+)/$
  4. ^calendar/(?P<year>\d+)/(?P<month>\d+)/(?P<day>\d+)/$
  5. ^news/(?P<year>\d+)/(?P<month>[^/]+)/?$
  6. ^newsletter/$
  7. ^staff/$
  8. ^newsletter/(?P<year>\d+)/(?P<month>[^/]+)/newsletter.pdf$
  9. ^event/(?P<object_id>\d+)/$
  10. ^navOptions/$
  11. ^AllowedPages/$
  12. ^RandomPics/$
  13. ^saveNewPic/
  14. ^admin/
  15. ^media/(?P<path>.*)$

The current URL, pastor's, 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.