Page not found (404)

Request Method: GET
Request URL: http://www.shawnweekly.com/random/i-am-a-writer

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

  1. admin/
  2. login/ [name='login']
  3. logout/ [name='logout']
  4. password_change/ [name='password_change']
  5. password_change/done/ [name='password_change_done']
  6. password_reset/ [name='password_reset']
  7. password_reset/done/ [name='password_reset_done']
  8. reset/<uidb64>/<token>/ [name='password_reset_confirm']
  9. reset/done/ [name='password_reset_complete']
  10. accounts/login/
  11. api/
  12. api-auth/
  13. childcare/
  14. tinymce/
  15. page/<str:page> [name='page']
  16. writing/ [name='writingList']
  17. writing/<str:slug> [name='writing']
  18. blog/ [name='blogList']
  19. blog/<str:slug> [name='blog']
  20. video/ [name='videoList']
  21. video/<str:slug> [name='video']
  22. podcast/ [name='podcastList']
  23. podcast/<str:slug> [name='podcast']
  24. category/<str:category> [name='categories']
  25. search/ [name='search']
  26. [name='main']
  27. ^media/(?P<path>.*)$
  28. ^static/(?P<path>.*)$

The current path, random/i-am-a-writer, 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.