diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index bda9fa1..9df9879 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -845,7 +845,7 @@ class Tournament(BaseModel): return False def display_tournament(self): - if self.publish_tournament: + if self.publish_tournament or self.enable_online_registration: return True is_build_and_not_empty = self.is_build_and_not_empty()