Page not found (404)

“/home/carson/media/editions/23” does not exist
Request Method: GET
Request URL: https://www.marlowecensus.org/editions/23/
Raised by: django.views.static.serve

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

  1. [name='homepage']
  2. [name='home']
  3. homepage [name='homepage']
  4. search/ [name='search']
  5. search/<str:field>/<str:value>/ [name='search']
  6. search/<str:field>/<str:value>/<str:order>/ [name='search']
  7. title/<int:id>/ [name='detail']
  8. about/ [name='about']
  9. about/<str:viewname>/ [name='about']
  10. issue/<int:id>/ [name='copy']
  11. copydata/<int:copy_id>/ [name='copy_data']
  12. copy/<int:census_id>/ [name='cen_copy_modal']
  13. autofill/location/ [name='autofill_location']
  14. autofill/location/<str:query>/ [name='autofill_location']
  15. autofill/provenance/ [name='autofill_provenance']
  16. autofill/provenance/<str:query>/ [name='autofill_provenance']
  17. autofill/collection/ [name='autofill_collection']
  18. autofill/collection/<str:query>/ [name='autofill_collection']
  19. location_copy_count_csv_export/ [name='location_copy_count_csv_export']
  20. year_issue_copy_count_csv_export/ [name='year_issue_copy_count_csv_export']
  21. export/<str:groupby>/<str:column>/<str:aggregate>/ [name='export']
  22. login [name='login_user']
  23. logout [name='logout_user']
  24. admin/
  25. ^(?P<path>.*)$

The current path, editions/23/, 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.