Page not found (404)

Request Method: GET
Request URL: http://mydsa.org/batch-start/images/favicon.png
Raised by: django.views.static.serve

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

  1. admin/
  2. [name='home']
  3. home [name='home']
  4. aboutus [name='aboutus']
  5. sports [name='sports']
  6. sport-details/<str:slug> [name='sportdetails']
  7. gallery [name='gallery']
  8. blogs [name='blogs']
  9. contactus [name='contactus']
  10. join-us [name='joinus']
  11. batch-start/<str:slug> [name='batchstart']
  12. signup [name='signup']
  13. signin [name='signin']
  14. logout [name='signout']
  15. about/<str:slug> [name='about']
  16. dashboard [name='dashboard']
  17. profile [name='profile']
  18. studentprofile [name='studentprofile']
  19. profile-details/<int:id> [name='profiledetails']
  20. edit-profile-details/<int:id> [name='editprofiledetails']
  21. update-profile-details [name='updateprofiledetails']
  22. payment-details [name='paymentdetails']
  23. index [name='index']
  24. blog-subpage/<int:id> [name='blogsubpage']
  25. blog-details/<str:slug> [name='blogsdetails']
  26. gallery-details/<int:id> [name='gallerydetails']
  27. create-checkout-session/ [name='checkout']
  28. checkout/<str:slug> [name='checkout']
  29. success [name='success']
  30. cancel [name='cancel']
  31. webhooks/stripe/ [name='webhook']
  32. ^(?P<path>.*)$

The current path, batch-start/images/favicon.png, 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.