Page not found (404)

Request Method: GET
Request URL: https://apps.bioviz.org/users/connect.html

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

  1. admin/
  2. accounts/
  3. [name='default-page']
  4. apps/
  5. search [name='search']
  6. download/
  7. submit_app/
  8. users/ ^login/(?P<backend>[^/]+)/$ [name='begin']
  9. users/ ^complete/(?P<backend>[^/]+)/$ [name='complete']
  10. users/ ^disconnect/(?P<backend>[^/]+)/$ [name='disconnect']
  11. users/ ^disconnect/(?P<backend>[^/]+)/(?P<association_id>\d+)/$ [name='disconnect_individual']
  12. users/ login/ [name='login']
  13. users/ login [name='login']
  14. users/ login/done/([\w-]{1,100})/ [name='login_done']
  15. users/ logout [name='logout']
  16. help/
  17. backend/
  18. obr/
  19. community_fav/<int:page>/
  20. installapp/(.+) [name='install-app']
  21. ^static\/(?P<path>.*)$

The current path, users/connect.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.