Page not found (404)

Request Method: GET
Request URL: http://localhost:8000/about-us.html

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

  1. jet/
  2. jet/dashboard/
  3. [name='home']
  4. add_item/ [name='add_item']
  5. item/<int:pk>/edit/ [name='edit_post']
  6. item/<int:pk>/delete/ [name='delete_post']
  7. session/ [name='session_list']
  8. session/add/ [name='add_session']
  9. session/<int:pk>/edit/ [name='edit_session']
  10. session/<int:pk>/delete/ [name='delete_session']
  11. semester/ [name='semester_list']
  12. semester/add/ [name='add_semester']
  13. semester/<int:pk>/edit/ [name='edit_semester']
  14. semester/<int:pk>/delete/ [name='delete_semester']
  15. dashboard/ [name='dashboard']
  16. accounts/
  17. programs/
  18. result/
  19. search/
  20. quiz/
  21. payments/
  22. accounts/api/
  23. admin/
  24. ^static/(?P<path>.*)$
  25. ^media/(?P<path>.*)$
  26. 400/
  27. 403/
  28. 404/
  29. 500/

The current path, about-us.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.