Page not found (404)

Request Method: GET
Request URL: https://www.swiszle.com/our-products

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

  1. admin/
  2. madiraspirits/
  3. jet/
  4. jet/dashboard/
  5. [name='home']
  6. find-us/ [name='find-us']
  7. product_detail/ [name='product_detail']
  8. account/ [name='account']
  9. delete_cart_item/ [name='delete_cart_item']
  10. delete_item/ [name='delete_item']
  11. about_us/ [name='about_us']
  12. logout/ [name='logout']
  13. lost_password/ [name='lost_password']
  14. otp_verification/ [name='otp_verification']
  15. reset_forgot_password/ [name='reset_forgot_password']
  16. contact/ [name='contact']
  17. contacts/ [name='contacts']
  18. register/ [name='register']
  19. return-policy/ [name='return_policy']
  20. disclaimer/ [name='disclaimer']
  21. terms-and-conditions/ [name='tnc']
  22. data-protection/ [name='data_protection']
  23. all-products/ [name='all_products']
  24. load_category/ [name='load_category']
  25. load_search_res/ [name='load_search_res']
  26. add_to_cart_ajax/ [name='add_to_cart_ajax']
  27. product_detail/<str:slug> [name='product_detail']
  28. cart/ [name='cart']
  29. checkout/ [name='checkout']
  30. invoice/ [name='invoice']
  31. payment [name='make-payment']
  32. payment_frame [name='payment_frame']
  33. payment-confirmation/<str:orders_rzp>/<str:orders> [name='payment_confirmation']
  34. payment-confirmation-success/<str:order_id> [name='payment_confirmation']
  35. payment-failure/<str:order_id>/ [name='payment_failure']
  36. ^static/(?P<path>.*)$
  37. ^media/(?P<path>.*)$

The current path, our-products, 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.