diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 4374dfc..1704162 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -58,7 +58,7 @@ class Tournament(models.Model): for team_registration in self.teamregistration_set.all(): next_match = team_registration.next_match() if next_match: - print(f"MATCH ID = {next_match.id}") + print(f"MATCH ID = {next_match.id} - {next_match.stage_name()} - {next_match.start_date}") names = team_registration.team_names() stage = next_match.stage_name() weight = team_registration.weight()