From c790eb7eb109120ba487b2588faf95b896b5a8aa Mon Sep 17 00:00:00 2001 From: Raz Date: Wed, 16 Apr 2025 08:45:57 +0200 Subject: [PATCH] fix tz stuff and ttc stuff --- tournaments/models/tournament.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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