Page not found (404)

Request Method: GET
Request URL: https://kurtketchum.com/category/news/

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

  1. ^admin/filebrowser/
  2. ^grappelli/
  3. ^ ^login/$ [name='login']
  4. ^ ^logout/$ [name='logout']
  5. ^ ^password_change/$ [name='password_change']
  6. ^ ^password_change/done/$ [name='password_change_done']
  7. ^ ^password_reset/$ [name='password_reset']
  8. ^ ^password_reset/done/$ [name='password_reset_done']
  9. ^ ^reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$ [name='password_reset_confirm']
  10. ^ ^reset/done/$ [name='password_reset_complete']
  11. ^admin/
  12. ^$ [name='home']
  13. ^cart/
  14. ^order/
  15. ^portfolio/
  16. ^(?P<slug>[-\w\d]+)/$ [name='page_view_single']
  17. ^media\/(?P<path>.*)$
  18. ^assets\/(?P<path>.*)$

The current path, category/news/, 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.