Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:8006/conferences.html

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

  1. ^admin/
  2. ^$ [name='home']
  3. ^members.html$ [name='members']
  4. ^memberdetails/(?P<id>[a-zA-Z0-9_]+)/$ [name='memberDetails']
  5. ^memberslist.html$ [name='memberslist']
  6. ^council/(?P<hash>[a-zA-Z0-9_]+)/$ [name='council']
  7. ^conferences/(?P<hash>[a-zA-Z0-9_]+)/$ [name='conferences']
  8. ^journal.html$ [name='journal']
  9. ^journalvolumes/(?P<journal_id>[a-zA-Z0-9_]+)/$ [name='journalvolumes']
  10. ^journalvolumedetails/(?P<volume_id>[a-zA-Z0-9_]+)/$ [name='journalvolumedetails']
  11. ^journalcontributors/(?P<journal_id>[a-zA-Z0-9_]+)/$ [name='journalcontributors']
  12. ^gallery.html$ [name='gallery']
  13. ^gallery_images/(?P<slug>[a-zA-Z0-9_]+)/$ [name='gallery_images']
  14. ^links.html$ [name='links']
  15. ^upcomingconference.html$ [name='upcomingconference']
  16. ^contactus.html$ [name='contactuspage']
  17. ^proceedings/(?P<hash>[a-zA-Z0-9_]+)/$ [name='proceedingspage']
  18. ^archives.html$ [name='archive']
  19. ^specialproceedings.html$ [name='specialproceedings']
  20. ^thanks/ [name='thanks']
  21. ^media\/(?P<path>.*)$

The current URL, conferences.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.