Page not found (404)

“/home/gpadtqmj/Gpaddi/media/term-condition.html” does not exist
Request Method: GET
Request URL: https://gpaddi.com/term-condition.html
Raised by: django.views.static.serve

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

  1. admin/
  2. [name='home']
  3. listing [name='log-listing']
  4. log_detail/<int:pk> [name='log_detail']
  5. get_area_code [name='get_area_code']
  6. get-amount [name='get_amount']
  7. get-count/<int:pk> [name='get-count']
  8. buy_foreign_contact [name='buy_foreign_contact']
  9. test-api [name='test-api']
  10. get-price [name='get-price']
  11. request-number [name='request-number']
  12. number-detail/<slug:slug> [name='number_detail']
  13. request-code/<slug:code> [name='request-code']
  14. add-funds [name='add-fund']
  15. initiate-payment [name='initiate-payment']
  16. verify-payment [name='verify_payment']
  17. transfer [name='transfer']
  18. pay-with-card [name='pay-with-card']
  19. hook [name='hook']
  20. dashboard/
  21. admin_dashboard/
  22. signup [name='signup']
  23. signin [name='signin']
  24. signout [name='signout']
  25. password_reset/ [name='password_reset']
  26. password_reset_done/ [name='password_reset_done']
  27. password_reset_<uidb64>_<token>/ [name='password_reset_confirm']
  28. password_reset_complete/ [name='password_reset_complete']
  29. change-password/ [name='change_password']
  30. ^static/(?P<path>.*)$
  31. ^(?P<path>.*)$

The current path, term-condition.html, matched the last one.

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.