Page not found (404)

Request Method: GET
Request URL: https://www.fatml.org/2014/details.html

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

  1. ^$ [name='home']
  2. ^workshop$ [name='workshop_home']
  3. ^workshop/venue$ [name='workshop_venue']
  4. ^schedule/(?P<schedule_slug>[-\w]+)/faq/(?P<slug>[-\w]+)$ [name='faq']
  5. ^schedule/(?P<schedule_slug>[-\w]+)/page/(?P<slug>[-\w]+)$ [name='page']
  6. ^admin/
  7. ^markitup/
  8. ^ ^schedule/(?P<slug>[-\w]+)$ [name='schedule']
  9. ^ ^schedule/(?P<schedule_slug>[-\w]+)/presentations$ [name='presentations']
  10. ^ ^schedule/(?P<schedule_slug>[-\w]+)/presentation/(?P<slug>[-\w]+)$ [name='presentation']
  11. ^ ^schedule/(?P<schedule_slug>[-\w]+)/speakers$ [name='speakers']
  12. ^ ^schedule/(?P<schedule_slug>[-\w]+)/speaker/(?P<slug>[-\w]+)$ [name='speaker']
  13. ^ ^schedule/(?P<schedule_slug>[-\w]+)/organizers$ [name='organisers']
  14. ^ ^schedule/(?P<schedule_slug>[-\w]+)/attendees$ [name='attendees']
  15. ^ ^schedule/(?P<schedule_slug>[-\w]+)/attendee/(?P<slug>[-\w]+)$ [name='attendee']
  16. ^ ^profile/$ [name='profile']
  17. ^ ^profile/delete-photo$ [name='profile_delete_photo']
  18. ^ ^organization$ [name='organisation']
  19. ^ ^resources/(?P<slug>[-\w]+)$ [name='category']
  20. ^ ^resources$ [name='resources']
  21. ^account/signup/$ [name='account_signup']
  22. ^account/login/$ [name='account_login']
  23. ^account/confirm_email/(?P<key>\w+)/$ [name='account_confirm_email']
  24. ^account/
  25. ^media\/(?P<path>.*)$

The current URL, 2014/details.html, 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.