Page not found (404)

Request Method: GET
Request URL: http://88.198.131.245:8001/tr/news/latest/

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

  1. ^$
  2. ^(?P<lang>.+)/news/$ [name='all_news']
  3. ^(?P<lang>.+)/news/more/(?P<start>\d+)$
  4. ^(?P<lang>.+)/news/top/$ [name='news_top']
  5. ^(?P<lang>.+)/news/top/more$
  6. ^news/search/$ [name='news_search']
  7. ^news/search/more/(?P<start>\d+)$ [name='news_search']
  8. ^(?P<lang>.+)/news/category/(?P<category_id>\d+)/$ [name='news_cat']
  9. ^(?P<lang>.+)/news/category/(?P<category_id>\d+)/more/(?P<start>\d+)$
  10. ^(?P<lang>.+)/news/source/(?P<source_id>\d+)/$ [name='news_source']
  11. ^(?P<lang>.+)/news/source/(?P<source_id>\d+)/more/(?P<start>\d+)$
  12. ^events/$ [name='all_events']
  13. ^events/(?P<lang>.*)/$ [name='all_events']
  14. ^api/news/search/(?P<lang>.+)/$
  15. ^user/get_latest_news_ajax/?$
  16. ^user/ajaxnews/?$
  17. ^user/ajaxnews/(?P<slug>.+?)/?$
  18. ^mehmet_admin/crawl/section/(?P<pk>\d+)/ [name='test_crawl_section']
  19. ^mehmet_admin/

The current URL, tr/news/latest/, 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.