|
|
|
@ -665,7 +665,7 @@ class Tournament(models.Model): |
|
|
|
|
|
|
|
|
|
|
|
def has_all_group_stages_started(self): |
|
|
|
def has_all_group_stages_started(self): |
|
|
|
for group_stage in self.groupstage_set.all(): |
|
|
|
for group_stage in self.groupstage_set.all(): |
|
|
|
if group_stage.has_at_least_one_started_match() == False |
|
|
|
if group_stage.has_at_least_one_started_match() == False: |
|
|
|
return False |
|
|
|
return False |
|
|
|
return True |
|
|
|
return True |
|
|
|
|
|
|
|
|
|
|
|
|