Page not found (404)

Request Method: GET
Request URL: https://travelbountyinc.com/gallery/2

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

  1. django-admin/
  2. djrichtextfield/
  3. admin/ [name='admin_home']
  4. admin/add/ [name='home_add']
  5. admin/<id>/edit/ [name='home_edit']
  6. admin/<id>/delete/ [name='home_delete']
  7. admin/login/ [name='admin_login']
  8. admin/logout/ [name='admin_logout']
  9. admin/destination/ [name='admin_destination']
  10. admin/destination/add/ [name='destination_add']
  11. admin/destination/<id>/edit/ [name='destination_edit']
  12. admin/destination/<id>/delete/ [name='destination_delete']
  13. admin/gallery/ [name='admin_gallery']
  14. admin/gallery/add/ [name='gallery_add']
  15. admin/gallery/<id>/edit/ [name='gallery_edit']
  16. admin/gallery/<id>/delete/ [name='gallery_delete']
  17. admin/about-us/ [name='admin_about']
  18. admin/contact-us/ [name='admin_contact']
  19. admin/newsletter/ [name='admin_newsletter']
  20. admin/inquiry/ [name='admin_inquiry']
  21. admin/inquiry/<id>/ [name='inquiry_single']
  22. admin/social-media/ [name='admin_social_media']
  23. admin/social-media/add/ [name='admin_social_add']
  24. admin/social-media/<id>/edit/ [name='admin_social_edit']
  25. admin/social-media/<id>/delete/ [name='admin_social_delete']
  26. destinations/ [name='destinations_index']
  27. destinations/<id>/<slug>/ [name='destination_single']
  28. destinations/inquire/ [name='destination_inquiry']
  29. gallery/ [name='gallery_index']
  30. gallery/<id>/<slug>/ [name='gallery_single']
  31. about-us/ [name='about_index']
  32. contact-us/ [name='contact_index']
  33. subscribe/ [name='subscribe']

The current path, gallery/2, didn’t match any of these.

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.