"/players": Display and manage a list of players.
"/players/int:competition_id/": Show players related to a specific competition.
"/players/int:club_id/": Display players associated with a particular club.
"/players/int:player_id": View details of a specific player.
"/add_player": Page to add a new player to the database.
"/players/int:player_id/edit": Edit details of a specific player.
"/player_delete/int:id/": Delete a player with a specific ID.
"/players_attributes": Display and manage a list of player attributes.
"/player_attributes/int:player_id": View and manage attributes of a
specific player.
"/add_player_attributes": Page to add new attributes to players in the database.
"/players_attributes/int:player_attributes_id/edit": Edit details of specific player attributes.
"/players_attributes_delete/int:id/": Delete player attributes with a specific ID.
These routes connect to functions in the 'views' module to handle different aspects of the sports league database and web
interface, such as displaying information, adding new players, editing player details, and deleting pl
"/clubs": Display and manage a list of all clubs.
"/clubs/int:competition_id": Display and manage clubs associated
with a specific competition.
"/clubs/int:club_id": View details of a specific club.
"/clubs/int:club_id/edit": Edit details of a specific club.
"/add_club": Page to add a new club to the database.
"/club_delete/int:id/": Delete a club with a specific ID.
"/games": Display and manage a list of all games.
"/games/int:club_id": Display and manage games associated with a
specific club.
"/games/int:competition_id": Display and manage games associated with a specific competition.
"/games/int:game_id": View details of a specific game.
"/games/int:game_id/edit": Edit details of a specific game.
"/add_game": Page to add a new game to the database.
"/game_delete": Delete a game (no specific game ID provided).