diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index d0e2d21..fa08156 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -1128,8 +1128,8 @@ class Tournament(BaseModel): OnlineRegistrationStatus.NOT_ENABLED: False, OnlineRegistrationStatus.NOT_STARTED: False, OnlineRegistrationStatus.ENDED: False, - OnlineRegistrationStatus.WAITING_LIST_POSSIBLE: False, - OnlineRegistrationStatus.WAITING_LIST_FULL: False, # Still manage in case spots open up + OnlineRegistrationStatus.WAITING_LIST_POSSIBLE: True, + OnlineRegistrationStatus.WAITING_LIST_FULL: True, # Still manage in case spots open up OnlineRegistrationStatus.IN_PROGRESS: False, # Allow for last-minute changes OnlineRegistrationStatus.ENDED_WITH_RESULTS: False, OnlineRegistrationStatus.CANCELED: False