Page not found (404)

Request Method: GET
Request URL: https://eros-brand.com/accessories/

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

  1. ^media/(?P<path>.*)$
  2. ^static/(?P<path>.*)$
  3. admin/
  4. register/ [name='register']
  5. profile/ [name='profile']
  6. login/ [name='login']
  7. logout/ [name='logout']
  8. [name='shop-home']
  9. products [name='shop-products']
  10. products/<str:category> [name='shop-products-filtered']
  11. products/id/<str:var_id> [name='shop-product']
  12. cart [name='shop-cart']
  13. cart/<str:var_id> [name='shop-cart-remove']
  14. checkout [name='shop-checkout']
  15. orders [name='shop-orders']
  16. get_states [name='shop-get-states']
  17. paypal/
  18. paypal-return/ [name='paypal-return']
  19. paypal-cancel/ [name='paypal-cancel']
  20. mockup-selector/ [name='shop-mockup-select']
  21. disable-mockup/ [name='shop-disable-mockup']
  22. tag-selector/ [name='shop-tag-select']
  23. change-tags/ [name='shop-change-tags']
  24. webhook-event/
  25. ^media\/(?P<path>.*)$

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