Page not found (404)

Request Method: GET
Request URL: http://notesfrombelow.org/archives/13

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

  1. [name='index']
  2. about [name='about']
  3. contribute [name='contribute']
  4. archives/<slug:category>/<int:page> [name='archives']
  5. archives [name='archives_main']
  6. edemery/<slug:slug> [name='blog-post']
  7. martor/
  8. sudo/
  9. editor/
  10. author/<slug:slug> [name='author']
  11. category/<slug:slug> [name='category']
  12. article/<slug:slug> [name='article']
  13. issues [name='issues']
  14. books [name='books']
  15. issue/<slug:slug> [name='issue']
  16. issue/<slug:slug>/publish [name='issue_publish']
  17. issue/<slug:slug>/pdf [name='issue_pdf']
  18. tag/<slug:slug> [name='tag']
  19. rss/
  20. <slug:slug> [name='page']
  21. sitemap.xml [name='sitemap']
  22. ^media\/(?P<path>.*)$

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