Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:8001/services.htm

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

  1. admin/
  2. [name='HOME']
  3. about/ [name='ABOUT']
  4. technologies/ [name='TECHNOLOGIES']
  5. slider/ [name='SLIDER']
  6. team/ [name='TEAM']
  7. customer/ [name='CUSTOMER']
  8. customer/scheme/ [name='CUSTOMER_SCHEME']
  9. customer/layout/ [name='CUSTOMER_LAYOUT']
  10. customer/contacts/ [name='CUSTOMER_CONTACTS']
  11. customer/delivery/ [name='CUSTOMER_DELIVERY']
  12. customer/slider/ [name='CUSTOMER_SLIDER']
  13. portfolio/ [name='PORTFOLIO']
  14. news/ [name='NEWS']
  15. news/<int:pk>
  16. work/ [name='WORK']
  17. politic/ [name='POLITIC']
  18. quality/ [name='QUALITY']
  19. ^media/(?P<path>.*)$

The current path, services.htm, 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.