Fixes all matches display

clubs
Laurent 2 years ago
parent 8d768ebc76
commit 4c9213ce23
  1. 2
      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):

Loading…
Cancel
Save