Page not found (404)

No collection found matching the query
Request Method: GET
Request URL: http://127.0.0.1:8001/collections/25/summary_ds
Raised by: collection.views.DatasetCollectionSummaryView

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

  1. [name='home']
  2. home/<str:version>/ [name='home-version']
  3. areas/
  4. collections/ group/<int:id>/gallery [name='collection-group-gallery']
  5. collections/ gallery [name='collection-gallery']
  6. collections/ create_ds/ [name='ds-collection-create']
  7. collections/ <int:id>/update_ds [name='ds-collection-update']
  8. collections/ <int:pk>/summary_ds [name='ds-collection-summary']

The current path, collections/25/summary_ds, 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.