Page not found (404)

Request Method: GET
Request URL: https://ictsamachar.prixa.net/news-details/7389/2021-08-21
Raised by: news.views_news.NewsDetailView

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

  1. ^__debug__/
  2. ^ $ [name='homeView']
  3. ^ ^story/(?P<pk>\d+)/$ [name='news_detail']
  4. ^ news/<int:pk>/ [name='news_detail_og']
  5. ^ news/<slug:slug>/ [name='news_detail_slug_og']
  6. ^ news-details/<int:pk>/<int:date>-<int:month>-<int:day> [name='news_detail_old']

The current path, news-details/7389/2021-08-21, 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.