Players are individual athletes linked to a team. A player account gives access to a personal dashboard showing the tournaments their team is enrolled in and their own statistics for each one.
Player accounts cannot be self-registered. They must be created by an Administrator (from the user management panel) or by the Team the player belongs to.
Dashboard
After logging in, players are redirected to /torneo/jugador/. The dashboard shows every tournament the player’s team is enrolled in, along with the player’s individual statistics for each tournament.
Statistics
The statistics shown depend on the sport:
| Sport | Statistics |
|---|
| Fútbol | Goals, assists. Goalkeepers also track goals conceded. |
| Baloncesto | Points, rebounds, assists. |
| Pádel | Pádel teams do not use individual player accounts. |
Player data
Each player profile stores the following fields:
| Field | Description |
|---|
| DNI | 8-digit number followed by an uppercase letter (e.g. 12345678A). Primary key. |
| Name | Player’s first name. |
| Surnames | Player’s surnames. |
| Goalkeeper | true if the player is the designated goalkeeper for a Fútbol team. |
| Team | The team this player belongs to. A player can be unlinked from a team if the team is deleted. |
| User account | The login account associated with this player. |
Relationship to teams and tournaments
Players do not enroll in tournaments directly. Enrollment is managed by the team account. When the team enrolls in a tournament, statistics records are automatically created for every player on the roster. When a new player is added to a team that is already in tournaments, their statistics records are created at that point.
Profile
Players can update their account email and password at /usuario/perfil/. Profile data specific to the player (name, surnames, goalkeeper status) can be edited by the team or an administrator.