From 2798924916709aed6ae05d6a4cafc9a5f0636231 Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 26 Apr 2024 16:39:41 +0200 Subject: [PATCH] Adds group stages when in group stage phase --- tournaments/models/tournament.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 6c38eba..7ab9e94 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -173,6 +173,7 @@ class Tournament(models.Model): group_stages = [] if self.group_stages_running(): + group_stages = self.live_group_stages() matches = self.group_stages_matches() else: last_started_match = self.first_unfinished_match()