Teams can't select a same problem for the two days

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello 2023-03-27 00:14:38 +02:00
parent 5b1374bf1b
commit fbaca32615
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 4 additions and 0 deletions

View File

@ -369,6 +369,10 @@ class DrawConsumer(AsyncJsonWebsocketConsumer):
while True:
problem = randint(1, settings.PROBLEM_COUNT)
if await TeamDraw.objects.filter(participation_id=td.participation_id,
round__tournament=self.tournament,
round__number=1).aexists():
continue
if await pool.teamdraw_set.filter(accepted=problem).acount() < (2 if pool.size == 5 else 1):
break