Page not found (404)

Request Method: GET
Request URL: http://beta.bristol.rugbyheritage.org/filter/inside

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

  1. __debug__/
  2. [name='home_index']
  3. games/ [name='games_index1']
  4. ^games/(?P<decade>\d{4})s$ [name='games_index2']
  5. ^games/(?P<season>\d{4})-(?P<next>\d{2})$ [name='games_sect']
  6. ^games/(?P<gamedate>\d{4}-\d{2}-\d{2})-(?P<oppo>[\w\-]+)$ [name='games_game']
  7. players/ [name='players_index']
  8. players/most-valuable [name='players_mv']
  9. players/positions/ [name='players_pos_index']
  10. ^players/positions/(?P<position>\w{2,})/?$ [name='players_pos_group']
  11. ^players/positions/(?P<position>\w{2,})/games/(?P<decade>\d{4})s/?$ [name='players_pos_group_games1']
  12. ^players/positions/(?P<position>\w{2,})/games/(?P<season>\d{4})-(?P<next>\d{2})/?$ [name='players_pos_group_games2']
  13. ^players/(?P<player>[\w\-]{2,})/games/(?P<season>\d{4})-(?P<next>\d{2})$ [name='players_player_games']
  14. ^players/(?P<player>[\w\-]{2,})/games/(?P<gamedate>\d{4}-\d{2}-\d{2})-(?P<oppo>[\w\-]+)$ [name='players_player_game']
  15. ^players/(?P<player>[\w\-]{2,})/positions/(?P<position>\w{2,})$ [name='players_player_pos']
  16. ^players/(?P<player>[\w\-]{2,})/positions/(?P<position>\w{2,})/games/(?P<season>\d{4})-(?P<next>\d{2})$ [name='players_player_pos_games']
  17. ^players/(?P<player>[\w\-]{2,})/positions/(?P<position>\w{2,})/games/(?P<gamedate>\d{4}-\d{2}-\d{2})-(?P<oppo>[\w\-]+)$ [name='players_player_pos_game']
  18. ^players/(?P<player>[\w\-]{2,})/positions/?$ [name='players_player_pos_group']
  19. ^players/(?P<player>[\w\-]{2,})/?$ [name='players_player']
  20. ^players/(?P<letter>\w)$ [name='players_sect']
  21. admin/

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