|
|
|
@ -278,7 +278,8 @@ class Tournament(models.Model): |
|
|
|
match_groups.append(self.group_stage_match_group(group_stage, broadcasted, hide_empty_matches=False)) |
|
|
|
match_groups.append(self.group_stage_match_group(group_stage, broadcasted, hide_empty_matches=False)) |
|
|
|
elif round_id: |
|
|
|
elif round_id: |
|
|
|
round = self.round_set.filter(id=round_id).first() |
|
|
|
round = self.round_set.filter(id=round_id).first() |
|
|
|
match_groups = self.round_match_groups(round, broadcasted, hide_empty_matches=False) |
|
|
|
if round: |
|
|
|
|
|
|
|
match_groups = self.round_match_groups(round, broadcasted, hide_empty_matches=False) |
|
|
|
else: |
|
|
|
else: |
|
|
|
match_groups = self.all_groups(broadcasted) |
|
|
|
match_groups = self.all_groups(broadcasted) |
|
|
|
|
|
|
|
|
|
|
|
|