Page not found (404)

Request Method: GET
Request URL: https://tunonlineshop.com/foods/my-account/

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

  1. admin/
  2. accounts/
  3. login_admin/
  4. logout/
  5. index/
  6. order_status/
  7. email/
  8. user_profile/
  9. lock_screen/
  10. default_login/
  11. product_list/
  12. product_grid/
  13. product_detail/<uid>
  14. cancel_product/
  15. return_product/
  16. customer/
  17. customer_delete/<uid>
  18. reviews/
  19. invoice/<id>
  20. invoice_list/
  21. add_product/
  22. Product_Delete/<uid>
  23. edit_product/<uid>
  24. slider/
  25. pdf/<id>
  26. index
  27. user_index/
  28. my-account/
  29. logoutbutton/
  30. about/<id>
  31. wishlist/<id>
  32. cart/<id>
  33. delete/<id>/<uid>
  34. remove_from_wishlist/<id>/<uid>
  35. product-details/<id>/<uid>
  36. checkout/<id>
  37. checkout_buy/<id>/<uid>/<qut>
  38. shop/<id>
  39. contact/<id>
  40. select_payment/<id>
  41. select_payment_buy/<id>/<uid>/<qut>
  42. user_order_status/<id>
  43. user_logged_index/<id>
  44. user_logged_my_account/<id>
  45. user_pdf/<id>
  46. main_pdf/
  47. ^media/(?P<path>.*)$

The current path, foods/my-account/, 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.