Page not found (404)

Request Method: GET
Request URL: http://contest.tstore.com.my:8080/debit/

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

  1. admin/
  2. [name='health_form']
  3. list/ [name='staff_list']
  4. datatable/ [name='staff_datatable']
  5. detail/<pk>/ [name='dashboard_detail']
  6. check-in-confirm/<pk>/ [name='check_in_confirm']
  7. duplicate-confirm/<pk>/ [name='duplicate_confirm']
  8. clear-confirm/<pk>/ [name='clear_confirm']
  9. bsk/ [name='bsk']
  10. dashboard/ [name='dashboard']
  11. dashboard/login/ [name='login']
  12. dashboard/logout/ [name='logout']
  13. ^static\/(?P<path>.*)$
  14. ^media\/(?P<path>.*)$

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