Page not found (404)

Request Method: GET
Request URL: https://biocentradx.com/contact.html

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

  1. admin/
  2. [name='home_page_view']
  3. about [name='about_view']
  4. contact [name='contact_view']
  5. patients/<int:pk>/ [name='retrieve_patient']
  6. patients/<int:pk>/requisition-report/<int:app> [name='patient_requisition_report']
  7. patients/<int:pk>/test-reports/<int:test_id>/<int:app> [name='patient_test_report']
  8. patients/<int:pk>/advanced-test-reports/<int:test_id>/<int:app> [name='patient_advanced_test_report']
  9. patients/<int:pk>/test-reports/<int:test_id>/test-summary [name='patient_test_report_summary']
  10. patients/<int:pk>/reports/<slug:url_name>/<int:app>/ [name='download_requisition_report']
  11. patients/<int:pk>/reports/<int:test_id>/<slug:url_name>/<int:app> [name='download_test_report']
  12. patients/<int:pk>/reports/<int:app>/ [name='download_externl_report']
  13. patients/<int:pk>/reports/<int:test_id>/<slug:url_name>/<int:app> [name='download_advanced_test_report']
  14. appointment/
  15. payments/
  16. tenants/
  17. clinical-tests/
  18. summernote/
  19. ^media/(?P<path>.*)$
  20. ^static/(?P<path>.*)$
  21. __debug__/

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