Page not found (404)

Request Method: GET
Request URL: http://elevenbits.com/blog/page/1/tag/7

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

  1. admin/
  2. [name='index']
  3. about [name='about']
  4. cookies [name='cookies']
  5. blog/ test/ [name='test']
  6. blog/ [name='blog']
  7. blog/ page/<int:page>/ [name='page']
  8. blog/ page/ [name='page']
  9. blog/ tag/<int:tag>/ [name='tag']
  10. blog/ tag/<int:tag>/page/<int:page>/ [name='tagpage']
  11. blog/ <int:id>/ [name='detail']

The current path, blog/page/1/tag/7, 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.