Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:3000/productstemplate.htm

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

  1. admin/
  2. index/
  3. sitemap.xml
  4. polishers/
  5. polishers/<slug:category>/
  6. polishers/detail/<slug:product_slug>/
  7. items/<slug:product_slug>/
  8. contact
  9. company
  10. company/blog/
  11. company/blog/<slug:title_slug>/
  12. company/news/
  13. company/news/<slug:title_slug>/
  14. videos/
  15. videos/<slug:video_category>/
  16. videos/watch/<slug:video_slug>/
  17. resources/
  18. resources/<slug:resource_category_slug>/
  19. answers-on-questions/
  20. answers-on-questions/<slug:product_slug>/
  21. answers-increment/
  22. login/ [name='user_login']
  23. logout/
  24. registration/
  25. ask-question/
  26. request-quote/
  27. send-all-quotes-in-cart/
  28. send-all-questions-in-cart/
  29. request-quote/<slug:product_slug>
  30. cart/questions/
  31. cart/quotes/
  32. profile/
  33. change-password/
  34. email-subscribe/
  35. email-unsubscribe/<str:token/>
  36. search/
  37. custom-services/
  38. custom-services/<slug:cs_slug>
  39. custom-services-success/
  40. applications/
  41. applications/<slug:application_slug>
  42. send-emails/
  43. question/<str:id>
  44. question/<str:id>/delete
  45. quote/<str:id>
  46. quote/<str:id>/delete
  47. generatequote
  48. dynamic_data
  49. anonymous/submit
  50. password_reset [name='password_reset']
  51. password_reset/done [name='password_reset_done']
  52. reset/<uidb64>/<token> [name='password_reset_confirm']
  53. reset/done [name='password_reset_complete']
  54. ^static\/(?P<path>.*)$
  55. ^media\/(?P<path>.*)$
  56. privacy-policy/ [name='privacypolicy']
  57. terms-and-conditions/ [name='termsandconditions']
  58. summernote/
  59. summernote/
  60. ^flatblocks/(?P<pk>\d+)/edit/$ [name='flatblocks-edit']
  61. ^media\/(?P<path>.*)$
  62. ^assets\/(?P<path>.*)$

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