Page not found (404)

Request Method: GET
Request URL: http://dormbase.mit.edu/demo/movies/mediaContent

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

  1. ^$ [name='home']
  2. ^(?P<title>.*)/comingsoon/$ [name='coming']
  3. ^directory/
  4. ^movies/ ^$
  5. ^movies/ ^reserve/$
  6. ^movies/ ^genre/(?P<genreType>.*)/(?P<viewType>.*)/$
  7. ^movies/ ^detail/(?P<movieId>.*)/$
  8. ^movies/ ^list/reserved/$
  9. ^personal/
  10. ^desk/
  11. package/
  12. ^search/
  13. ^photologue/
  14. ^nextbus/
  15. ^menus/
  16. ^laundry/
  17. ^media/(?P<path>.*)$
  18. ^static/(?P<path>.*)$
  19. ^admin/
  20. ^demo\/static\/(?P<path>.*)$

The current URL, movies/mediaContent, 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.