Page not found (404)

Request Method: GET
Request URL: https://crwtruckdrivertraining.com/admission/contact.html

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

  1. admin/
  2. [name='home']
  3. about/ [name='about']
  4. admission/ [name='admission']
  5. apply_online/ [name='apply_online']
  6. contact/ [name='contact']
  7. login/ [name='login']
  8. logout/ [name='logout']
  9. user/password_change/ [name='password_change']
  10. user/edit_profile/ [name='edit_profile']
  11. students/
  12. ^media/(?P<path>.*)$

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