Page not found (404)

No Collectible matches the given query.
Request Method: GET
Request URL: http://127.0.0.1:8000/collectible/Space%20Art%20Fantastic/641
Raised by: archive.views.collectible_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']
  5. item/random [name='item_random']
  6. browse [name='browse']
  7. books [name='booksets']
  8. book/<str:bookset_name> [name='bookset_detail']
  9. book/<str:bookset_name>/<str:book_id> [name='book_detail']
  10. collectibles [name='collectiblesets']
  11. collectible/<str:collectibleset_name> [name='collectibleset_detail']
  12. collectible/<str:collectibleset_name>/<str:collectible_id> [name='collectible_detail']

The current path, collectible/Space Art Fantastic/641, 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.