Page not found (404)

Request Method: GET
Request URL: http://chandansblog.pythonanywhere.com/news-feed/

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

  1. [name='home']
  2. posts/ [name='newblog']
  3. index/ [name='newblog']
  4. admin/
  5. post/<slug:slug>/ [name='detail']
  6. myposts/create [name='create_post']
  7. myposts/list [name='list_posts']
  8. myposts/update/<slug:slug> [name='update_post']
  9. myposts/delete/<slug:slug> [name='delete_post']
  10. summernote/
  11. search [name='search']
  12. login/ [name='login']
  13. logout/ [name='logout']
  14. signup/ [name='signup']
  15. myposts/create [name='create_post']
  16. myposts/list [name='list_posts']
  17. myposts/update/<slug:slug> [name='update_post']
  18. myposts/delete/<slug:slug> [name='delete_post']
  19. hitcount/
  20. ^static/(?P<path>.*)$
  21. ^media/(?P<path>.*)$

The current path, news-feed/, 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.