Page not found (404)

Request Method: GET
Request URL: http://nightjar.ex.ac.uk/stories/dave

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

  1. ^ ^$ [name='index']
  2. ^ ^story/(?P<story>\w+) [name='story']
  3. ^story/(?P<story>\w+)
  4. ^ ^blog [name='blog']
  5. ^ ^post/(?P<post_id>\d+) [name='post']
  6. ^post/(?P<post_id>\d+)
  7. ^media/(?P<path>.*)$
  8. ^static/(?P<path>.*)$
  9. ^admin/doc/
  10. ^admin/

The current URL, stories/dave, 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.