Page not found (404)

“/home/dharmaprakasan/bookproject/charity” does not exist
Request Method: GET
Request URL: http://dharmaprakasan.org/charity/
Raised by: django.views.static.serve

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

  1. admin/
  2. [name='home']
  3. about/
  4. activities/
  5. contact/
  6. contact_list/ [name='admin_contact_list']
  7. gallery/all [name='my-gallery']
  8. gallery/view [name='my-gallerys']
  9. gallery/remove/<int:id> [name='gallery-delete']
  10. admin_home/
  11. login/ [name='signin']
  12. logout/ [name='signout']
  13. slider/all [name='my-slider']
  14. slider/remove/<int:id> [name='slider-delete']
  15. addbook [name='Add_Book']
  16. book/detailadmin/<int:id> [name='book-detail-admin']
  17. books/remove/<int:id> [name='book-delete']
  18. book/change/<int:id>/ [name='bookUpdate']
  19. booksList/view [name='BookList']
  20. book/detail/<int:id> [name='book-detail']
  21. aksharavritham/add [name='add_aksharavritham']
  22. aksharavritham/ [name='aksharavritham']
  23. aksharavritham/remove/<int:id> [name='aksharavritham-delete']
  24. aksharavritham/change/<int:id>/ [name='AksharavrithamUpdate']
  25. publication/all [name='my-publications']
  26. publication/view [name='my-publicationss']
  27. publication/remove/<int:id> [name='publications-delete']
  28. ramayana/all [name='my-ramayana']
  29. ramayana/view [name='my-ramayanas']
  30. ramayana/remove/<int:id> [name='ramayana-delete']
  31. integral/all [name='my-integral']
  32. integral/view [name='my-integrals']
  33. integral/remove/<int:id> [name='integral-delete']
  34. News_Enevts/add [name='Add_News_Enevts']
  35. News_Enevts/remove/<int:id> [name='News_Enevts-delete']
  36. News_Events [name='News_Enevts']
  37. ^(?P<path>.*)$

The current path, charity/, matched the last one.

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.