Page not found (404)

Request Method: GET
Request URL: https://centurybike.com.mx/product/urban-15

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

  1. ^ ^$ [name='index']
  2. ^ ^custom/$ [name='custom']
  3. ^ custom/create-order/ [name='create_order']
  4. ^ ^custom/order/(?P<pk>[0-9]+)/(?P<order>[a-zA-Z0-9]+)/$ [name='order_detail']
  5. ^admin/
  6. ^media/(?P<path>.*)$

The current path, product/urban-15, 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.