Page not found (404)

No Item matches the given query.
Request Method: GET
Request URL: http://127.0.0.1:8000/item/1615/
Raised by: archive.views.item_detail

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

  1. [name='index']
  2. about/ [name='about']
  3. lot/<str:lot_name>/ [name='lot_detail']
  4. item/<str:item_id>/ [name='item_detail']

The current path, item/1615/, 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.