Page not found (404)

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

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/
  13. web/ coupon/ [name='redesign_coupon_view']
  14. web/ delivery/
  15. web/ meal/
  16. web/ checkout/ [name='redesign_checkout']
  17. web/ order/
  18. web/ menu/ [name='redesign_restaurant_full_menu']
  19. web/ store/<pk> [name='redesign_restaurant_menu_redirect']
  20. web/ reservation/ [name='redesign_restaurant_reservation']
  21. admin_app/
  22. [name='landing_home']
  23. blog/
  24. about/ [name='landing_about']
  25. pricing/ [name='landing_pricing']
  26. contact/ [name='landing_contact']
  27. privacy-policy [name='privacy_policy']
  28. terms-conditions [name='terms_conditions']
  29. api/v2/
  30. restaurant/v2/
  31. delivery/
  32. webhooks/
  33. emails/
  34. restaurant/
  35. ^media/(?P<path>.*)$

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