Page not found (404)

Request Method: GET
Request URL: http://www.crimsonstrife.com/brunob.html

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

  1. djadmin/
  2. register [name='register']
  3. [name='index']
  4. login [name='login']
  5. logout [name='logout']
  6. challenge/<int:challenge_id> [name='challenge_view']
  7. solve/<int:challenge_id> [name='solve']
  8. solves [name='solved_challenges']
  9. solves/<str:username> [name='solved_challenges']
  10. hint/<int:hint_id> [name='hint']
  11. control_panel/<str:username> [name='control_panel']
  12. admin/challenge [name='challenge_admin']
  13. ^admin/challenge/hints/(?P<challenge_identifier>[A-Za-z\-0-9%_ ]+)/$ [name='admin_hint']
  14. admin/solves [name='solves_admin']
  15. admin/ [name='admin']
  16. highscores/ [name='high_scores']
  17. captcha/ [name='captcha']
  18. ^file/(?P<filename>[A-Za-z\-_0-9.]+)$ [name='file']
  19. tfa_qrcode.png [name='tfa_qrcode']
  20. two_factor [name='two_factor']
  21. verify_tfa [name='verify_tfa']
  22. about [name='about']
  23. admin/leaderboard [name='admin_leaderboard']
  24. leaderboard [name='leaderboard']

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