From e8ee0fdb422ec5ff85dd3d1c7ad8b9603d1ef62b Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 1 Aug 2025 15:41:06 +0200 Subject: [PATCH] remove DECLINED_UNRELATED #2 --- biz/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/biz/models.py b/biz/models.py index 2e2bb0f..5702f0e 100644 --- a/biz/models.py +++ b/biz/models.py @@ -22,8 +22,8 @@ class Status(models.TextChoices): CUSTOMER = 'CUSTOMER', 'Customer' LOST = 'LOST', 'Lost customer' DECLINED = 'DECLINED', 'Declined' - DECLINED_UNRELATED = 'DECLINED_UNRELATED', 'Declined without significance' - # NOT_CONCERNED = 'NOT_CONCERNED', 'Not concerned' + # DECLINED_UNRELATED = 'DECLINED_UNRELATED', 'Declined without significance' + NOT_CONCERNED = 'NOT_CONCERNED', 'Not concerned' SHOULD_BUY = 'SHOULD_BUY', 'Should buy' class DeclinationReason(models.TextChoices):