Page not found (404)

Request Method: GET
Request URL: http://www.apenterprises.org/enquiry-form/

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

  1. admin/
  2. login/ [name='login']
  3. register/ [name='register']
  4. logout/ [name='logout']
  5. index/ [name='index']
  6. [name='landing']
  7. products/ [name='products']
  8. detailed/products/<int:id> [name='detailed_product']
  9. products/<str:name> [name='categorized']
  10. cancer/products/<str:name> [name='cancer_categorized']
  11. cancer/monitoring [name='cancer_monitoring']
  12. feedback [name='feedback']
  13. view/feedback [name='view_feedbacks']
  14. view/enquiries [name='view_enquiry']
  15. enquiry [name='enquiry']
  16. euroimmun [name='euroimmun']
  17. ^media/(?P<path>.*)$
  18. ^static/(?P<path>.*)$
  19. ^media/(?P<path>.*)$
  20. ^static/(?P<path>.*)$

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