Page not found (404)

Request Method: GET
Request URL: https://votefinder.org/game/

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

  1. auth/
  2. admin/
  3. add/
  4. add_game
  5. ^game_list/(?P<page>\d+)/*$
  6. ^game/(?P<slug>[\w-]+)$
  7. ^player/(?P<slug>[\w-]+)/*$
  8. ^claim_player/(?P<playerid>\d+)/*$
  9. ^p:(?P<playerid>\d+)/*$
  10. ^profile/*$
  11. ^update/(?P<gameid>\d+)/*$
  12. ^player_state/(?P<gameid>\d+)/(?P<playerid>\d+)/(?P<state>\w+)/$
  13. player_list/
  14. ^add_player/(?P<gameid>\d+)/*$
  15. ^delete_spectators/(?P<gameid>\d+)/*$
  16. votecount/<int:gameid>/
  17. ^resolve/(?P<voteid>\d+)/(?P<resolution>-{0,1}\d+)/*$
  18. ^posts/(?P<gameid>\d+)/(?P<page>\d+)/*$
  19. ^add_comment/(?P<gameid>\d+)/*$
  20. ^delete_comment/(?P<commentid>\d+)/*$
  21. rss/
  22. atom/
  23. ^game_status/(?P<slug>[\w-]+)/*
  24. game_status/
  25. faq/
  26. ^deadline/(?P<gameid>[\d]+)/(?P<month>[\d]+)/(?P<day>[\d]+)/(?P<year>[\d]+)/(?P<hour>[\d]+)/(?P<minute>[\d]+)/(?P<ampm>[\w]+)/(?P<tzname>.+)$
  27. ^close_game/(?P<gameid>\d+)/*$
  28. ^start_game/(?P<gameid>\d+)/(?P<day>\d+)/*$
  29. ^reopen_game/(?P<gameid>\d+)/*$
  30. ^new_day/(?P<gameid>\d+)/(?P<day>\d+)/*$
  31. ^replace/(?P<gameid>\d+)/(?P<clear>\w+)/(?P<outgoing>\d+)/(?P<incoming>.+)*$
  32. ^startday/(?P<day>\d+)/(?P<postid>\d+)*$
  33. templates/
  34. create_template/
  35. ^template/(?P<templateid>\d+)$
  36. ^delete_template/(?P<templateid>\d+)$
  37. ^game_template/(?P<gameid>\d+)/(?P<templateid>\d+)
  38. active_games/
  39. active_games/json/
  40. ^active_games/(?P<style>.+)
  41. closed
  42. ^add_vote/(?P<gameid>\d+)/(?P<player>[\d-]+)/(?P<votes>\w+)/(?P<target>\d+)$
  43. ^add_vote_global/(?P<gameid>\d+)$
  44. ^delete_vote/(?P<voteid>\d+)$
  45. ^add_faction/(?P<gameid>\d+)$
  46. ^delete_faction/(?P<factionid>\d+)$
  47. ^img/(?P<slug>[\w-]+)/*$
  48. autoupdate/
  49. players/
  50. ^players/(?P<page>\d+)$
  51. ^delete_alias/(?P<aliasid>\d+)$
  52. ^sendpms/(?P<slug>[\w-]+)$
  53. ^post_histories/(?P<gameid>\d+)$
  54. ^post_executions/(?P<gameid>\d+)/(?P<enabled>\w+)$
  55. ^ecco_mode/(?P<gameid>\d+)/(?P<enabled>\w+)$
  56. ^post_vc/(?P<gameid>\d+)$
  57. ^votechart/(?P<gameslug>[\w-]+)$
  58. ^votechart/(?P<gameslug>[\w-]+)/(?P<playerslug>[\w-]+)$
  59. gamechart/
  60. update_user_theme
  61. update_user_pronouns
  62. ^players/common_games/(?P<slug_a>[\w-]+)/(?P<slug_b>[\w-]+)
  63. ^static/(?P<path>.*)$

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