Page not found (404)

Request Method: GET
Request URL: https://dh2016.adho.org/keyword/

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

  1. ^admin/
  2. ^ ^browse/title/(?P<type>list|index)?/?$ [name='title-list']
  3. ^ ^browse/title/(?P<type>list|index)?/?(?P<page>\d+)/?$ [name='title-list-paginated']
  4. ^ ^browse/authors/(?P<type>list|index)?/?$ [name='author-list']
  5. ^ ^browse/authors/(?P<type>list|index)?/?(?P<page>\d+)/?$ [name='author-list-paginated']
  6. ^ ^browse/topics/(?P<type>list|index)?/?$ [name='topic-all']
  7. ^ ^browse/topics/(?P<type>list|index)?/?(?P<page>\d+)?/?$ [name='topic-paginated']
  8. ^ ^browse/keywords/(?P<type>list|index)?/?$ [name='keyword-all']
  9. ^ ^browse/keywords/(?P<type>list|index)?/?(?P<page>\d+)?/?$ [name='keyword-paginated']
  10. ^ ^browse/authors/list/?(?P<page>\d+)?/?$ [name='keyword-list']
  11. ^ ^keyword/(?P<pk>\d+)/?$ [name='keyword-detail']
  12. ^ ^(?P<pk>\d+)/?$ [name='abstract-detail']
  13. ^ ^(?P<pk>\d+)/new/?$ [name='abstract-detail']
  14. ^ ^frame/(?P<url>.*$) [name='frame-view']
  15. ^ ^$ [name='main']
  16. ^ ^search/?$ [name='results']
  17. ^ ^book/?$ [name='book']
  18. ^ ^abstracts\/static\/(?P<path>.*)$

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