Page not found (404)

Request Method: GET
Request URL: http://dvcok.ru/partners.html

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

  1. ^admin/
  2. ^admin_tools/
  3. ^$ [name='index']
  4. ^ ^about/$ [name='about']
  5. ^ ^contacts/$ [name='contacts']
  6. ^ partners/$ [name='partners']
  7. ^ products/$ [name='products']
  8. ^ products/(?P<slug>[\w\d\-]+)/$ [name='products-details']
  9. ^ procedure/$ [name='procedure']
  10. ^ ^send_question/$ [name='send_question']
  11. ^ ^send_feedback/$ [name='send_feedback']
  12. ^ ^send_subscribe/$ [name='send_subscribe']
  13. ^ ^send_order/$ [name='send_order']
  14. ^archive/$ [name='archive']
  15. ^news/$ [name='news']
  16. ^news/(?P<slug>[\w\-]+)/$ [name='news-details']
  17. ^robots\.txt$
  18. ^(?P<slug>[\w\-\d/]+)/$ [name='flatpages']
  19. ^static\/(?P<path>.*)$
  20. ^media\/(?P<path>.*)$

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