Page not found (404)

Request Method: GET
Request URL: https://www.josb.net/corpvideo/13/

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

  1. [name='home']
  2. journal [name='journalpage_view']
  3. search [name='search_journal']
  4. articles [name='get_all_articles']
  5. article/<int:article_id> [name='article_view']
  6. author/<int:author_id> [name='author_profile']
  7. image-archive [name='image_archive_view']
  8. privacy-policy [name='privacy_policy_view']
  9. terms-of-use [name='terms_view']
  10. page/<slug:slug> [name='common_page_view']
  11. login/ [name='login']
  12. sign-up/ [name='signup']
  13. logout/ [name='logout_view']
  14. password-reset/ [name='password-reset']
  15. password-reset/done/ [name='password_reset_done']
  16. password-reset-confirm/<uidb64>/<token>/ [name='password_reset_confirm']
  17. password-reset-complete/ [name='password_reset_complete']
  18. user/dashboard [name='user_dashboard']
  19. user/profile [name='user_profile']
  20. user/profile/change-password [name='user_profile_change_password']
  21. user/profile?edit [name='edit_profile']
  22. user/create-article [name='create_article']
  23. user/submit-article [name='submit_article']
  24. user/add-another-submission/ [name='add_another_submission']
  25. user/article/<int:id> [name='article_detail']
  26. user/article/<int:article_id>/submission/<int:submission_id> [name='submission_detail']
  27. user/search-user-by-email [name='get_users_by_email']
  28. user/add_user_to_contributors [name='add_user_to_contributors']
  29. user/create_user_and_add_to_contributors [name='create_user_and_add_to_contributors']
  30. user/remove_user_from_contributors [name='remove_user_from_contributors']
  31. user/delete-additional-file [name='delete_additional_file']
  32. user/reviewer-dashboard [name='reviewer_dashboard']
  33. user/submit-review/<int:id> [name='submit_review']
  34. user/images [name='user_images']
  35. user/upload [name='upload_image']
  36. user/notifications [name='user_notifications']
  37. chief-editor/
  38. co-editor/
  39. admin/
  40. ckeditor/
  41. ^static/(?P<path>.*)$
  42. ^media/(?P<path>.*)$

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