Page not found (404)

Request Method: GET
Request URL: https://www.futuristinstitute.org/courses/the-future-of-work/overviewoverview
Raised by: courses.views.LevelView

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

  1. ^$ [name='home']
  2. ^courses/ ^$ [name='list']
  3. ^courses/ ^track/?$ [name='track']
  4. ^courses/ ^exam/?$ [name='exam']
  5. ^courses/ ^exam/(?P<exam_id>\d+)/?$ [name='exam_results']
  6. ^courses/ ^(?P<slug>[-\w]+)/overview/?$ [name='details']
  7. ^courses/ ^(?P<slug>[-\w]+)/join/?$ [name='join']
  8. ^courses/ ^(?P<slug>[-\w]+)/exam/?$ [name='exam']
  9. ^courses/ ^(?P<slug>[-\w]+)/?$
  10. ^courses/ ^(?P<slug>[-\w]+)/(?P<level>[-\w]+)/?$ [name='level']

The current path, courses/the-future-of-work/overviewoverview, 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.