Page not found (404)

Request Method: GET
Request URL: http://dyscreen.dystech.com.au/landing

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

  1. admin/
  2. [name='home']
  3. new_assessment/<int:child_id>/ [name='new_assessment']
  4. assessment/<int:child_id>/<int:assessment_id>/ [name='AssessmentView']
  5. audio_evaluation_sync/ [name='audio_evaluation_sync']
  6. ChildAddView/ [name='ChildAddView']
  7. child/<int:child_id>/ [name='ChildPageView']
  8. ChillDeleteView/<int:child_id>/ [name='ChillDeleteView']
  9. assessment_report/<int:child_id>/<int:assessment_id>/ [name='assessment_report']
  10. child_assessment_report/<int:child_id>/<int:assessment_id>/ [name='child_assessment_report']
  11. pdf_report/<int:child_id>/<int:assessment_id>/ [name='pdf_report']
  12. recall_openai_api/ [name='recall_openai_api']
  13. accounts/
  14. health/ [name='health_check']
  15. accounts/
  16. ^static/(?P<path>.*)$
  17. ^media/(?P<path>.*)$ [name='serve']

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