Page not found (404)

Request Method: GET
Request URL: http://ecom.nourmohamed.com/products/coming-soon.html

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

  1. admin/
  2. [name='home_page']
  3. accounts/
  4. products/ [name='product_list']
  5. products/ filter/ [name='product_filter']
  6. products/ add_to_wish/ [name='add_to_favorites']
  7. products/ remove_from_wish/ [name='remove_from_wish']
  8. products/ category/ [name='category_list']
  9. products/ brand/ [name='brand_list']
  10. products/ <slug:slug> [name='product_detail']
  11. products/ <slug:slug>/add-review [name='add_review']
  12. products/ brand/<slug:slug> [name='brand_detail']
  13. products/ api/
  14. products/ api/<int:pk>
  15. products/ api/category/
  16. products/ api/category/<int:pk> [name='category_detail_api']
  17. products/ api/brand
  18. products/ api/brand/<int:pk>
  19. accounts/
  20. orders/
  21. info/
  22. coming-soon/ [name='coming_soon']
  23. summernote/
  24. __debug__/
  25. i18n/
  26. rest-auth/
  27. ^static/(?P<path>.*)$
  28. ^media/(?P<path>.*)$

The current path, products/coming-soon.html, 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.