Page not found (404)

Request Method: GET
Request URL: http://presence.hlcs.it/open

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

  1. ^admin
  2. ^accounts/login/$ [name='login']
  3. ^accounts/logout/$ [name='logout']
  4. ^gates/(?P<gate_name>\w{0,50})/$ [name='control']
  5. ^gates/$ [name='gates']
  6. ^requests/(?P<gate_name>\w{0,50})/$ [name='requests']
  7. ^about/$ [name='about']
  8. ^$ [name='home']

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