Page not found (404)

Request Method: GET
Request URL: https://bitedev.com.au/web/cart/58

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

  1. api/v3/
  2. restaurant/v3/
  3. ^admin/
  4. ^__debug__/
  5. integrations/
  6. web/ <pk> [name='redesign_restaurant_home']
  7. web/ franchise/<str:name> [name='redesign_franchise_home']
  8. web/ reselect/ [name='reselect_restaurant_view']
  9. web/ auth/
  10. web/ account/
  11. web/ restaurant/
  12. web/ cart/ [name='redesign_cart_view']
  13. web/ cart/ increase/ [name='redesign_increase_quantity']
  14. web/ cart/ decrease/ [name='redesign_decrease_quantity']
  15. web/ coupon/ [name='redesign_coupon_view']
  16. web/ delivery/
  17. web/ meal/
  18. web/ checkout/ [name='redesign_checkout']
  19. web/ order/
  20. web/ menu/ [name='redesign_restaurant_full_menu']
  21. web/ store/<pk> [name='redesign_restaurant_menu_redirect']
  22. web/ reservation/ [name='redesign_restaurant_reservation']
  23. admin_app/
  24. [name='landing_home']
  25. blog/
  26. about/ [name='landing_about']
  27. pricing/ [name='landing_pricing']
  28. contact/ [name='landing_contact']
  29. privacy-policy [name='privacy_policy']
  30. terms-conditions [name='terms_conditions']
  31. api/v2/
  32. restaurant/v2/
  33. delivery/
  34. webhooks/
  35. emails/
  36. restaurant/
  37. ^media/(?P<path>.*)$

The current path, web/cart/58, 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.