Page not found (404)

Request Method: GET
Request URL: http://ayushayurveda.in/Library/3

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

  1. admin/
  2. superadmin/
  3. [name='index']
  4. about [name='about']
  5. speciality [name='speciality']
  6. speciality_details<int:sid> [name='speciality_details']
  7. packages [name='packages']
  8. treatments [name='treatments']
  9. treatment_details<int:tid> [name='treatment_details']
  10. doctors [name='doctors']
  11. doctors_details<int:did> [name='doctors_details']
  12. facility [name='facility']
  13. gallery [name='gallery']
  14. blogs [name='blogs']
  15. blog_details<int:nid> [name='blog_details']
  16. contact [name='contact']
  17. appointment [name='appointment']
  18. ^media/(?P<path>.*)$
  19. ^static/(?P<path>.*)$

The current path, Library/3, 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.