Skip to main content
Only users with the Organizador or Administrador role can edit match results. Team and player users have read-only access.
1

Open the matches view

Go to your tournament and navigate to the matches section:
/torneo/<torneo_id>/enfrentamientos/<n_ronda>
Use the round selector to switch between matchdays (Liga) or knockout rounds (Eliminatoria).
2

Select a match to edit

Click on the match you want to record. Then choose the edit option to open the result form:
/torneo/<torneo_id>/enfrentamientos/<n_ronda>/editar/<enfrentamiento_id>
Both teams must already be assigned to the match. Matches in a knockout bracket that are still waiting for results from a previous round cannot be edited until those prior matches have been recorded.
3

Enter the score

Fill in the score fields for the sport. See the sport-specific sections below.
4

Add player statistics (optional)

Before saving the final score, you can record individual player statistics using the forms for the local and away teams. See the sport-specific sections below.
5

Save the result

Submit the score form to save. The classification or bracket is updated automatically.
POST /torneo/<torneo_id>/enfrentamientos/<n_ronda>/editar/<enfrentamiento_id>/guardar

Entering scores by sport

Enter the number of goals for each team:
FieldDescription
anotacion_localGoals scored by the home team
anotacion_visitanteGoals scored by the away team
Draws are allowed in football. Leave both fields blank to clear a previously recorded result.
Both scores must be submitted together. Submitting only one score returns an error.
Player statistics for football:Use the per-team forms to record:
  • Goals (GOL) — adds to the player’s goles total and increases the team’s anotacion_local or anotacion_visitante by the entered amount.
  • Assists (ASI) — adds to the player’s asistencias total. Does not affect the score directly.
To add a stat entry:
POST /torneo/<id>/enfrentamientos/<round>/editar/<match_id>/estadistica/<equipo_id>
To remove a stat entry:
/torneo/<id>/enfrentamientos/<round>/editar/<match_id>/borrar/<estadistica_id>
Goalkeeper statsIf a player on a team has es_portero = True, their goles_contra (goals conceded) is updated automatically whenever a result is saved. It reflects the total goals scored against their team across all matches in the tournament.

What happens after saving

When a result is saved, the system automatically:
  • Liga: Recalculates the standings table (Clasificacion) for both teams — points, wins, draws, losses, goals for, goals against, and position. If all matches in the league are complete and playoffs are enabled, the knockout bracket is created automatically.
  • Eliminatoria: Advances the winner to their slot in the next round. When the Final is recorded, the tournament winner is set.
  • Eliminatoria con Fase de Grupos: Recalculates the group table. When all group matches are complete, the knockout bracket is generated automatically.
  • Player statistics: Cumulative totals in EstadisticasFutbol or EstadisticasBaloncesto are updated based on any player stat entries recorded for the match.