diff --git a/tournaments/models/team_registration.py b/tournaments/models/team_registration.py index 709c61f..3252031 100644 --- a/tournaments/models/team_registration.py +++ b/tournaments/models/team_registration.py @@ -87,7 +87,7 @@ class TeamRegistration(models.Model): return "--" def is_valid_for_summon(self): - return len(self.playerregistration_set.all()) > 0 + return len(self.playerregistration_set.all()) > 0 or self.name is not None def initial_weight(self): if self.locked_weight is None: