From 259cababdda18cc1138f90837680fddd0bf0f43e Mon Sep 17 00:00:00 2001 From: Laurent Date: Sat, 16 Mar 2024 09:18:02 +0100 Subject: [PATCH] More logs --- tournaments/models/tournament.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()