Page not found (404)

Request Method: GET
Request URL: http://localhost/delivery/tproduct/235870344-386427551431-burger-ribnii

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

  1. admin/
  2. [name='home']
  3. delivery/ [name='delivery']
  4. delivery/<current_cat> [name='delivery_with_cat']
  5. categories/ [name='show_categories']
  6. categories/<slug>/ [name='pizza']
  7. cart/add/ [name='add_to_cart']
  8. cart/get/ [name='get_cart']
  9. cart/delete/<id>/ [name='remove_from_cart']
  10. make-order/ [name='make_order']
  11. tk_for_order/ [name='tk_for_order']
  12. ^media/(?P<path>.*)$

The current path, delivery/tproduct/235870344-386427551431-burger-ribnii, 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.