Page not found (404)

Request Method: GET
Request URL: https://jkimuli.pythonanywhere.com/garage/login.html

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

  1. [name='index']
  2. about [name='about']
  3. accounts/
  4. blog/
  5. movies/
  6. wallets/
  7. garage/api/
  8. garage/ [name='index']
  9. garage/ customers/ [name='customer_list']
  10. garage/ categories/ [name='category_list']
  11. garage/ technicians/ [name='technician_list']
  12. garage/ tasks/ [name='task_list']
  13. garage/ customers/add/ [name='customer_create']
  14. garage/ categories/add/ [name='category_create']
  15. garage/ technicians/add/ [name='technician_create']
  16. garage/ tasks/add/ [name='task_create']
  17. garage/ customers/<int:pk>/ [name='customer_details']
  18. garage/ technicians/<int:pk>/ [name='technician_details']
  19. garage/ tasks/<int:pk>/ [name='task_details']
  20. garage/ customers/<int:pk>/edit/ [name='customer_update']
  21. garage/ categories/<int:pk>/edit/ [name='category_update']
  22. garage/ technicians/<int:pk>/edit/ [name='technician_update']
  23. garage/ tasks/<int:pk>/edit/ [name='task_update']
  24. garage/ categories/<int:pk>/delete [name='category_delete']
  25. garage/ customers/<int:pk>/delete [name='customer_delete']
  26. garage/ technicians/<int:pk>/delete [name='technician_delete']
  27. garage/ tasks/<int:pk>/delete [name='task_delete']
  28. garage/ tasks/<int:pk>/complete/ [name='task_complete']
  29. admin/

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