Page not found (404)

Image does not exist
Request Method: GET
Request URL: https://shuttereye.org/pic-a-day/tryout/sky.jpg/view/
Raised by: imagine.views.image_detail

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

  1. login/ [name='login']
  2. logout/ [name='logout']
  3. admin/
  4. [name='index']
  5. stream/<stream_slug>/ [name='stream_detail']
  6. <collection_slug>/ [name='collection_detail']
  7. ^(?P<collection_slug>[-\w]+)/(?P<file_path>.+)/(?P<imagename>.+)/view/$ [name='image_detail']

The current path, pic-a-day/tryout/sky.jpg/view/, 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.