Page not found (404)

Request Method: GET
Request URL: https://monkeybackend.ch/accounts/login/?next=/

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

  1. api-auth/
  2. api/blog_new/
  3. admin/
  4. api/main
  5. api/menu
  6. api/home/
  7. api/automation/
  8. api/about/
  9. api/consulting/
  10. api/blog/
  11. api/webdev/
  12. auth/
  13. blog/
  14. ^media/(?P<path>.*)$
  15. ^static/(?P<path>.*)$
  16. ^_nested_admin/
  17. ^media/(?P<path>.*)$

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