From c6d5af345fcac0a7078956c506ab49fd7cc982cf Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 8 Oct 2025 11:08:35 +0200 Subject: [PATCH] Adds declination reasons --- biz/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/biz/models.py b/biz/models.py index cc3eb0f..0570502 100644 --- a/biz/models.py +++ b/biz/models.py @@ -31,6 +31,8 @@ class DeclinationReason(models.TextChoices): TOO_EXPENSIVE = 'TOO_EXPENSIVE', 'Too expensive' USE_OTHER_PRODUCT = 'USE_OTHER_PRODUCT', 'Use other product' USE_ANDROID = 'USE_ANDROID', 'Use Android' + TOO_FEW_TOURNAMENTS = 'TOO_FEW_TOURNAMENTS', 'Too few tournaments' + NOT_INTERESTED = 'NOT_INTERESTED', 'Not interested' UNKNOWN = 'UNKNOWN', 'Unknown' class ActivityType(models.TextChoices):