Page not found (404)

Request Method: GET
Request URL: http://haberrus.com/polls/5

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

  1. ^$
  2. ^search/$
  3. ^test/$
  4. ^admin/
  5. ^ ^sitemap.xml$
  6. ^ ^sitemap-(?P<section>.+)\.xml$ [name='sitemaps']
  7. ^ ^json/article/detail/(?P<id>\d+)/$
  8. ^ ^sidebar.json$
  9. ^ ^upload/image/$
  10. ^banners/
  11. ^informer/
  12. ^subscribe/
  13. ^blog/
  14. ^photo-gallery/
  15. ^video-gallery/
  16. ^headlines/
  17. ^archive/
  18. ^polls/ ^$ [name='index']
  19. ^polls/ ^(?P<pk>\d+)/$ [name='detail']
  20. ^polls/ ^(?P<pk>\d+)/results/$ [name='results']
  21. ^polls/ ^(?P<poll_id>\d+)/vote/$ [name='vote']
  22. ^ ^rss/yandex/$ [name='yandex']
  23. ^ ^rss/$ [name='rss']
  24. ^ ^atom/$ [name='atom']
  25. ^ ^news/
  26. ^ ^news/
  27. ^ ^(?P<category_slug>[\w-]+)/ ^(?P<slug_date>\d{4}/\d{2}/\d{2})/(?P<slug>[\w-]+)\.html$ [name='detail']
  28. ^ ^(?P<category_slug>[\w-]+)/ ^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})/$ [name='day_list']
  29. ^ ^(?P<category_slug>[\w-]+)/ ^(?P<year>\d{4})/week/(?P<week>\d+)/$ [name='week_list']
  30. ^ ^(?P<category_slug>[\w-]+)/ ^(?P<year>\d{4})/(?P<month>\d{2})/$ [name='month_list']
  31. ^ ^(?P<category_slug>[\w-]+)/ ^(?P<year>\d{4})/$ [name='year_list']
  32. ^ ^(?P<category_slug>[\w-]+)/ ^$ [name='list']
  33. ^ ^(?P<category_slug>[\w-]+)/ ^rss/yandex/$ [name='yandex']
  34. ^ ^(?P<category_slug>[\w-]+)/ ^rss/$ [name='rss']
  35. ^ ^(?P<category_slug>[\w-]+)/ ^atom/$ [name='atom']
  36. ^ ^(?P<category_slug>[\w-]+)/(?P<id>\d+)-[^/]+\.html$
  37. ^ ^(?P<category_slug>[\w-]+)/ ^(?P<slug_date>\d{4}/\d{2}/\d{2})/(?P<slug>[\w-]+)\.html$ [name='detail']
  38. ^ ^(?P<category_slug>[\w-]+)/ ^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})/$ [name='day_list']
  39. ^ ^(?P<category_slug>[\w-]+)/ ^(?P<year>\d{4})/week/(?P<week>\d+)/$ [name='week_list']
  40. ^ ^(?P<category_slug>[\w-]+)/ ^(?P<year>\d{4})/(?P<month>\d{2})/$ [name='month_list']
  41. ^ ^(?P<category_slug>[\w-]+)/ ^(?P<year>\d{4})/$ [name='year_list']
  42. ^ ^(?P<category_slug>[\w-]+)/ ^$ [name='list']

The current URL, polls/5, 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.