Page not found (404)

Request Method: GET
Request URL: http://niagaraseacadets.com/uniforms/

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

  1. admin/
  2. [name='index']
  3. uniform.html/ [name='unireq']
  4. current-cadets.html/ [name='training_landing_page_form']
  5. contact.html/ [name='contact']
  6. gallery.html/ [name='gallery']
  7. about-us-page.html/ [name='about']
  8. cadet-unit-operations.html/ [name='cad_unit_ops']
  9. logout/ [name='logout']
  10. training-options.html/ [name='training_options']
  11. lesson-development.html/ [name='lessondev']
  12. short-leave.html/ [name='short_leave']
  13. covid-information-page.html/ [name='covid_info']
  14. weekly-programing.html/ [name='weekly_programming']
  15. summer-training.html/ [name='summer_training']
  16. staff-page.html [name='staff']
  17. navy-league-cadets.html/ [name='navy_league_cadets']
  18. staff-login.html/ [name='login']
  19. ^media/(?P<path>.*)$
  20. ^media/(?P<path>.*)$

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