Skip to main content

Tournament standings

Standings are available at:
/torneo/<torneo_id>/clasificacion/
The view differs based on the tournament type.
The standings table lists all enrolled teams ordered by:
  1. Points (descending)
  2. Wins (descending)
  3. Goal difference / points difference (descending)
  4. Losses (ascending)
  5. Goals/points scored (descending)
  6. Goals/points conceded (ascending)
Standings table columns:
ColumnFieldDescription
PposicionCurrent position
PJvictorias + empates + derrotasMatches played
WvictoriasWins
DempatesDraws
LderrotasLosses
GFanotacion_favorGoals/points scored
GAanotacion_contraGoals/points conceded
PtspuntosPoints
Points system by sport:
SportWinDrawLoss
Fútbol310
Baloncesto21
Pádel10
Basketball and Pádel do not allow draws, so the draw column will always be 0.
Relegation zoneWhen descenso is enabled on the tournament, the bottom n_equipos_descenso positions are highlighted as the relegation zone.PlayoffsWhen playoffs is enabled, the top n_equipos_playoffs teams advance to a knockout bracket once all league matches are played. The bracket is generated automatically when the last result is saved.

Player statistics

The player statistics leaderboard is available at:
/torneo/<torneo_id>/estadisticas/
Statistics are accumulated across all matches in the tournament. They are updated each time a match result is saved.
StatFieldDescription
GoalsgolesTotal goals scored by the player
AssistsasistenciasTotal assists recorded
Goals concededgoles_contraGoals conceded by the team’s goalkeeper
goles_contra is only populated for players where es_portero = True. It is recalculated automatically each time a result is saved, reflecting the total goals scored against the goalkeeper’s team across all tournament matches.
goles_contra is stored per-player in EstadisticasFutbol and is null for non-goalkeepers.

How statistics are updated

Player statistics are stored in two places:
  • EstadisticasEnfrentamiento — a staging table holding per-match entries while the match is being edited.
  • EstadisticasFutbol / EstadisticasBaloncesto — the cumulative totals per player per tournament.
When a match result is saved, the system reconciles the staging entries against the previously saved entries and applies the difference to the cumulative totals. This means editing a result or updating player stats and saving again will correctly adjust the totals rather than double-counting.
If a player was previously recorded with 2 goals in a match and you update that to 3, the system adds 1 to their cumulative goles total. If you delete the entry entirely, it subtracts the full amount.