From 95b6390f792c24ebcf37e12a3e152b01d86bd1eb Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 18 Jul 2025 10:36:21 +0200 Subject: [PATCH] fix other names --- bizdev/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bizdev/models.py b/bizdev/models.py index 26d6948..5f4b93d 100644 --- a/bizdev/models.py +++ b/bizdev/models.py @@ -29,8 +29,8 @@ class DeclinationReason(models.TextChoices): UNKNOWN = 'UNKNOWN', 'Unknown' class ActivityType(models.TextChoices): - MAIL = 'MAIL', 'Mailing List' - SMS = 'SMS', 'SMS Campaign' + MAIL = 'MAIL', 'Mail' + SMS = 'SMS', 'SMS' CALL = 'CALL', 'Call' PRESS = 'PRESS', 'Press Release' WORD_OF_MOUTH = 'WORD_OF_MOUTH', 'Word of mouth'