Page not found (404)

Request Method: GET
Request URL: http://voice.ashmanov.org/marker/login/?next=/audio/

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

  1. __debug__/
  2. marker/admin/login/ [name='login']
  3. marker/admin/logout/ [name='logout']
  4. api/auth/login/ [name='api_login']
  5. keycloak/
  6. healthcheck/ [name='healthcheck']
  7. api/
  8. graphql/
  9. audio/
  10. marker/admin/
  11. ^metrics$ [name='prometheus-django-metrics']
  12. ^file/(?P<pk>[^/.]+)/$ [name='media-file-detail']
  13. ^file/(?P<pk>[^/.]+)\.(?P<format>[a-z0-9]+)/?$ [name='media-file-detail']
  14. ^media/(?P<pk>[^/.]+)/$ [name='media-detail']
  15. ^media/(?P<pk>[^/.]+)\.(?P<format>[a-z0-9]+)/?$ [name='media-detail']
  16. ^$ [name='api-root']
  17. ^\.(?P<format>[a-z0-9]+)/?$ [name='api-root']
  18. ^mms_static/(?P<path>.*)$
  19. ^recordings/(?P<path>.*)$

The current path, marker/login/, 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.