Page not found (404)

Request Method: GET
Request URL: http://my.jinfiniti.com/cart/

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

  1. [name='home']
  2. about-us/ [name='about_us']
  3. affiliates/
  4. documents/
  5. help/ [name='faq']
  6. risk_calculator/ [name='risk_calculator']
  7. admin/
  8. activate/ [name='activation']
  9. contacts/ [name='contacts']
  10. polls/
  11. products/(?P<product_path>.*)$ [name='products']
  12. api/
  13. account/
  14. account/password/
  15. blog/
  16. dashboard/
  17. terms_of_service [name='terms_of_service']
  18. privacy_policy [name='privacy_policy']
  19. reports/
  20. samples/
  21. permission/ [name='permission']
  22. permission/update/<pk> [name='permission_update']
  23. swagger/ [name='schema-swagger-ui']
  24. redoc/ [name='schema-redoc']
  25. ^static/(?P<path>.*)$
  26. ^media/(?P<path>.*)$

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