Page not found (404)

Request Method: GET
Request URL: https://www.digitalstream.dev/post/6/index.html

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

  1. admin/
  2. users/
  3. store/
  4. feed/ [name='feed']
  5. post/<int:pk>/ [name='post-detail']
  6. [name='home']
  7. posts/<str:tag>/ [name='posts-by-tag']
  8. post/new/ [name='post-create']
  9. post/<int:pk>/update [name='post-update']
  10. post/<int:pk>/delete [name='post-delete']
  11. password_reset/ [name='password_reset']
  12. password_reset/done/ [name='password_reset_done']
  13. password_reset_confirm/<uidb64>/<token>/ [name='password_reset_confirm']
  14. password_reset_complete/ [name='password_reset_complete']
  15. ^media/(?P<path>.*)$
  16. ^static/(?P<path>.*)$

The current path, post/6/index.html, 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.