Page not found (404)

Request Method: GET
Request URL: http://other-words.net/2012/12/05/oops-did-i-just-say-that/

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

  1. django_db_admin/
  2. ^ ^$ [name='index']
  3. ^ ^(?P<hashID>[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789]{10})$ [name='category']
  4. ^ ^room$ [name='room']
  5. ^ ^room/poll$ [name='roomUpdate']
  6. ^ ^room/step/next$ [name='nextStep']
  7. ^ ^room/phase/next$ [name='nextPhase']
  8. ^ ^room/options$ [name='roomOptions']
  9. ^ ^challenge/new$ [name='challengeNew']
  10. ^ ^challenge/answer$ [name='challengeAnswer']
  11. ^ ^account/password_reset/?$ [name='password_reset']
  12. ^ ^account/password_change/?$ [name='password_change']
  13. ^ ^account/log_in/?$ [name='log_in']
  14. ^ ^account/log_out/?$ [name='log_out']
  15. ^ ^media.*
  16. ^static/(?P<path>.*)$

The current path, 2012/12/05/oops-did-i-just-say-that/, 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.