Page not found (404)

Request Method: GET
Request URL: http://xn--80aaaf1aqcsj6a6l.xn--p1ai/news/%25D0%25BF%25D0%25B8%25D1%2582%25D0%25B0%25D0%25BD%25D0%25B8%25D0%25B51/

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

  1. ^tinymce/
  2. ^admin/
  3. ^ ^$ [name='home']
  4. ^ ^contacts/ [name='contacts']
  5. ^ ^news/$ [name='news']
  6. ^ ^news/(?P<news_url>\w+)/ [name='news_page']
  7. ^ ^documents/$ [name='docs']
  8. ^ ^page/(?P<page_url>\w+)/ [name='pages']
  9. ^ ^media\/(?P<path>.*)$
  10. ^ ^static\/(?P<path>.*)$

The current URL, news/%D0%BF%D0%B8%D1%82%D0%B0%D0%BD%D0%B8%D0%B51/, 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.