Page not found (404)

Request Method: GET
Request URL: https://eaglebookshop.co.uk/site/the-paperback-snake/

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

  1. django-admin/
  2. tinymce/
  3. [name='home']
  4. browse [name='room.index']
  5. browse/<slug:room> [name='room.show']
  6. books [name='category.index']
  7. category/<slug:category> [name='book.index']
  8. book/<str:book> [name='book.show']
  9. events [name='event.index']
  10. events/past [name='event.index_past']
  11. events/<int:year>/<int:month>/<int:day>/<slug:event> [name='event.show']
  12. <slug:fragment> [name='fragment.show']
  13. ^media/(?P<path>.*)$

The current path, site/the-paperback-snake/, 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.