Page not found (404)

Request Method: GET
Request URL: http://infed.ru/ru/journals/83/
Raised by: cms.views.details

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

  1. sitemap.xml
  2. ^ ru/ [name='main_page']
  3. ^ search/ [name='view_article_search']
  4. ^ articles/<int:article_id>/ [name='view_article']
  5. ^ journals/ [name='view_magazines']
  6. ^ journal/last/ [name='view_last_magazine']
  7. ^ journal/<int:magazine_fdid>/ [name='view_magazine']
  8. ^ sections/ [name='view_chapters']
  9. ^ section/<int:chapter_id>/ [name='view_chapter']
  10. ^ authors/ [name='view_authors']
  11. ^ author/<int:author_id>/ [name='view_author']
  12. ^ news/ [name='view_news']
  13. ^ new/<int:newId>/ [name='view_new']
  14. ^media/(?P<path>.*)$
  15. ru/ admin/
  16. ru/ ^cms_login/$ [name='cms_login']
  17. ru/ ^cms_wizard/
  18. ru/ ^(?P<slug>[0-9A-Za-z-_.//]+)/$ [name='pages-details-by-slug']
  19. ru/ ^$ [name='pages-root']
  20. ^media/(?P<path>.*)$
  21. ^static/(?P<path>.*)$

The current path, /ru/journals/83/, 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.