Page not found (404)

Request Method: GET
Request URL: https://medabv.ru/catalog/catid/54?limit=100

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

  1. ^admin/
  2. ^control/api/
  3. ^control/
  4. ^control/
  5. ^ ^$ [name='index']
  6. ^ ^products/$ [name='products']
  7. ^ ^progress/$ [name='progress']
  8. ^ ^manufacturers/$ [name='manufs']
  9. ^ ^manufacturers/(?P<obj_id>\w+(?:-\w+)*)/$ [name='manuf']
  10. ^ ^news/$ [name='newsList']
  11. ^ ^news/(?P<obj_id>\w+(?:-\w+)*)/$ [name='newsItem']
  12. ^ ^about/$ [name='about']
  13. ^ ^contacts/$ [name='contacts']
  14. ^ ^cart/$ [name='cart']
  15. ^ ^api/
  16. ^ ^(?P<category_obj_id>\w+(?:-\w+)*)/$ [name='category']
  17. ^ ^(?P<category_obj_id>\w+(?:-\w+)*)/(?P<product_obj_id>[\d]+)/$ [name='product']
  18. ^ ^404/$
  19. ^ ^500/$
  20. ^media/(?P<path>.*)$

The current URL, catalog/catid/54, 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.