Page not found (404)

Request Method: GET
Request URL: https://www.sciencetime.jp/note/203l

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

  1. admin/
  2. [name='index']
  3. management [name='management']
  4. test [name='test']
  5. add_post/ [name='add_post']
  6. news_and_columns/edit/<int:pk> [name='update_post']
  7. news_and_columns [name='posts']
  8. news_and_columns/tags/<slug:tag_slug>/ [name='post_by_tag']
  9. news_and_columns/all/ [name='all_posts']
  10. post/<int:pk> [name='post_detail']
  11. post_text [name='post_text']
  12. category/<str:cats>/ [name='category']
  13. genre/<str:gens>/ [name='genre']
  14. products [name='products']
  15. products/edit/<int:pk> [name='update_product']
  16. products/tags/<slug:tag_slug>/ [name='product_by_tag']
  17. products/<int:pk> [name='product_detail']
  18. note/<int:pk> [name='note_detail']
  19. note_text [name='note_text']
  20. note/all/ [name='all_notes']
  21. note/tags/<slug:tag_slug>/ [name='note_by_tag']
  22. add_note/ [name='add_note']
  23. note/edit/<int:pk> [name='update_note']
  24. note/edit_content/<int:pk> [name='update_content_note']
  25. note/edit_reference/<int:pk> [name='update_reference_note']
  26. subject/<str:subj>/ [name='subject']
  27. add_field/ [name='add_field']
  28. subject/edit/<int:pk>/ [name='update_field']
  29. subject/field/<slug:slug>/ [name='field_detail']
  30. contact/ [name='contact_form']
  31. contact/result/ [name='contact_result']
  32. api/book/<int:pk>/click/ [name='api_click']
  33. ads.txt
  34. image_upload [name='image_upload']
  35. file_uploaded/<int:pk> [name='file_uploaded']
  36. file_list [name='file_list']
  37. book/<int:pk> [name='book']

The current path, note/203l, 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.