Page not found (404)

Request Method: GET
Request URL: http://bondstreettour.com/blog/page/10/

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

  1. [name='home']
  2. admin/
  3. accounts/
  4. staff/ [name='staff']
  5. about/ [name='about']
  6. tour/
  7. blog/ add/ [name='add_blog']
  8. blog/ tour/add/ [name='add_blog_tour']
  9. blog/ blog/<str:code>/ [name='blog_view']
  10. blog/ update/<str:code>/ [name='blog_update']
  11. blog/ update/tour/<str:code>/ [name='blog_tour_update']
  12. blog/ detail/<str:code>/ [name='blog_detail']
  13. blog/ tour/<str:code>/ [name='blog_tour_detail']
  14. blog/ blog/tour/<str:code>/ [name='blog_tour_view']
  15. blog/ all/ [name='blog_all']
  16. booking/
  17. ^static/(?P<path>.*)$
  18. ^media/(?P<path>.*)$

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