Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:8003/f-index.htm

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

  1. ^accounts/login/$ [name='auth_login']
  2. ^accounts/logout/$ [name='auth_logout']
  3. ^news/
  4. ^video/
  5. ^admin/logout/$
  6. ^admin/
  7. ^reserved/repertorio/(?P<pk>\d+)/$ [name='reserved-repertorio-music']
  8. ^reserved/repertorio/(?P<studio>[-\w]+)/$ [name='reserved-repertorio-studio']
  9. ^reserved/repertorio/$ [name='reserved-repertorio']
  10. ^reserved/coristi/(?P<pk>\d+)/$ [name='reserved-coristi-detail']
  11. ^reserved/coristi/$ [name='reserved-coristi']
  12. ^reserved/documenti/$ [name='reserved-documenti']
  13. ^reserved/documenti-stampa/$ [name='reserved-documenti-stampa']
  14. ^reserved/eventi/(?P<pk>\d+)/$ [name='reserved-eventi-detail']
  15. ^reserved/eventi/$ [name='reserved-eventi-list']
  16. ^maestro/$ [name='maestro']
  17. ^contatti/$ [name='contatti']
  18. ^coro/$ [name='il-coro']
  19. ^repertorio/(?P<slug>[-\w]+)/$ [name='repertorio-detail']
  20. ^repertorio/$ [name='repertorio']
  21. ^eventi/(?P<year>\d{4})/$ [name='eventi_year_archive']
  22. ^eventi/$ [name='eventi']
  23. ^(?P<link>\w+)/$ [name='link']
  24. ^$ [name='home']
  25. feed/eventi/$ [name='eventi-feed']
  26. ^sitemap\.xml$
  27. ^media\/(?P<path>.*)$
  28. ^__debug__/

The current URL, f-index.htm, 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.