Page not found (404)

Request Method: GET
Request URL: http://localhost:8011/channel/support

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

  1. admin/
  2. docs/
  3. checkout/
  4. ^chat/login/(?P<company_identity>[0-9a-zA-Z]+)/$ [name='chat-login']
  5. ^plans/$ [name='plan-list']
  6. ^plans/(?P<pk>[^/.]+)/$ [name='plan-detail']
  7. accounts/company/check/<company_hash>
  8. accounts/company/check-status/<code>
  9. ^accounts/company/$ [name='company-list']
  10. ^accounts/company/detail/(?P<company_identity>[0-9a-zA-Z]{40})/$ [name='company-detail-data']
  11. ^accounts/company/(?P<pk>[^/.]+)/$ [name='company-detail']
  12. ^accounts/company/(?P<pk>[^/.]+)/check-domain/$ [name='company-check-domain']
  13. ^accounts/company/(?P<pk>[^/.]+)/check-status/$ [name='company-check-status']
  14. ^accounts/company/(?P<pk>[^/.]+)/start-infrastructure/$ [name='company-start-infrastructure']
  15. ^accounts/invite/invite/$ [name='invite-invite']
  16. apps/download

The current path, channel/support, 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.