Page not found (404)

No item found matching the query
Request Method: GET
Request URL: https://studio-stream.herokuapp.com/store/item/5/
Raised by: store.views.ItemDetailView

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

  1. admin/
  2. users/
  3. store/ [name='store-home']
  4. store/ item/<int:pk>/ [name='item-detail']

The current path, store/item/5/, matched the last one.

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.