Page not found (404)

Request Method: GET
Request URL: https://codesnippet.in/snippets/django-project-updating-on-server/None

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

  1. admin/
  2. accounts/
  3. ckeditor/
  4. robots.txt
  5. sitemap.xml [name='sitemap']
  6. feed.xml [name='rss']
  7. [name='home']
  8. snippets/ [name='snipps']
  9. snippets/<str:slug>/ [name='snipp-detail']
  10. snippets/<str:slug>/like/ [name='like-snipp']
  11. tags/ [name='tags']
  12. tag/<str:tag>/ [name='tag']
  13. experts/ [name='experts']
  14. privacy/ [name='privacy']
  15. getintouch/ [name='getintouch']
  16. subscribe [name='subscribe']
  17. dashboard/ [name='dashboard']
  18. dashboard/snippets/ [name='d_snippets']
  19. dashboard/snippets/<str:slug>/edit/ [name='snippedit']
  20. dashboard/snippet/new/ [name='dnewsnipp']
  21. dashboard/profile/ [name='dprofile']
  22. dashboard/profile/<str:slug>/edit/ [name='dprofiledit']
  23. dashboard/profile/validate_username/ [name='validate_username']
  24. ^media/(?P<path>.*)$
  25. ^media/(?P<path>.*)$

The current path, snippets/django-project-updating-on-server/None, 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.