Page not found (404)

Invalid page (10): That page contains no results
Request Method: GET
Request URL: https://ringbase.org/photos/?page=10
Raised by: app.photos.views.PhotoListView

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

  1. [name='home']
  2. welcome/ [name='welcome']
  3. accounts/password/set/ [name='account_set_password']
  4. accounts/password/change/ [name='account_change_password']
  5. accounts/
  6. species/
  7. animals/
  8. schemes/
  9. organizations/
  10. users/
  11. rings/
  12. fieldwork/
  13. locations/
  14. euring/
  15. photos/ ^create/(?P<observation_pk>\d+)/ [name='photo_create']
  16. photos/ ^(?P<pk>\d+)/delete/ [name='photo_delete']
  17. photos/ ^(?P<pk>\d+)/edit/(?P<observation_pk>\d+)/ [name='photo_edit']
  18. photos/ ^(?P<pk>\d+)/tag/(?P<observation_pk>\d+)/ [name='photo_tags']
  19. photos/ ^(?P<pk>\d+)/ [name='photo_detail']
  20. photos/ [name='photo_list']

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