|
|
|
@ -76,8 +76,7 @@ class Tournament(models.Model): |
|
|
|
for match in round.match_set.all(): |
|
|
|
for match in round.match_set.all(): |
|
|
|
matches.append(match) |
|
|
|
matches.append(match) |
|
|
|
|
|
|
|
|
|
|
|
if broadcasted: |
|
|
|
matches = [m for m in matches if m.broadcasted==True] |
|
|
|
matches = [m for m in matches if m.broadcasted==True] |
|
|
|
|
|
|
|
if not broadcasted: |
|
|
|
if not broadcasted: |
|
|
|
matches = [m for m in matches if len(m.team_scores.all()) > 0] |
|
|
|
matches = [m for m in matches if len(m.team_scores.all()) > 0] |
|
|
|
|
|
|
|
|
|
|
|
|