Page not found (404)

Request Method: GET
Request URL: https://swordscomic.com/swords/I/

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

  1. [name='index']
  2. admin/
  3. ads.txt [name='ads-txt']
  4. comic/ [name='reader-redirect']
  5. comic/random/ [name='random-reader-redirect']
  6. comic/feed/ [name='feed']
  7. comic/rss.xml [name='feed-alt']
  8. comic/data/ [name='comic-metadata']
  9. comic/data/<slug:page>/ [name='page-metadata']
  10. comic/<slug:page>/ [name='reader']
  11. test/ [name='test']
  12. archive/ [name='archive-index']
  13. archive/pages/ [name='archive-pages']
  14. archive/<str:type>/ [name='archive-tagtype']
  15. archive/<str:type>/<str:tag>/ [name='archive-tag']
  16. community/ [name='community']
  17. 500/
  18. <str:short_code> [name='configured-redirect']
  19. ^media/(?P<path>.*)$
  20. ^static/(?P<path>.*)$

The current path, swords/I/, 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.