From 3cd541977df65d2b55732222e76c6f1c68e94c1b Mon Sep 17 00:00:00 2001 From: Raz Date: Mon, 5 May 2025 11:35:36 +0200 Subject: [PATCH] add animation type variable --- tournaments/models/enums.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tournaments/models/enums.py b/tournaments/models/enums.py index 2e7315f..1b606ca 100644 --- a/tournaments/models/enums.py +++ b/tournaments/models/enums.py @@ -307,3 +307,5 @@ class RegistrationPaymentMode(models.IntegerChoices): class AnimationType(models.IntegerChoices): TOURNAMENT = 0, 'Tournoi' MELEE = 1, 'Mêlée' + LOSER_BRACKET = 2, 'Classement' + CONSOLATION_BRACKET = 3, 'Consolation'