From 4c9213ce23c875c69129e00e8c8b3a9646827aad Mon Sep 17 00:00:00 2001 From: Laurent Date: Tue, 26 Mar 2024 14:49:24 +0100 Subject: [PATCH] Fixes all matches display --- 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 b39f96d..4aae976 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -90,7 +90,7 @@ class Tournament(models.Model): group = self.group_stage_match_group(group_stage, broadcasted) groups.append(group) for round in self.round_set.all(): - groups = self.round_match_groups(round, broadcasted) + groups.extend(self.round_match_groups(round, broadcasted)) return groups def group_stage_match_group(self, group_stage, broadcasted):