From: Yoan Le Clanche Date: Tue, 14 May 2024 14:06:46 +0000 (+0200) Subject: set is_subscribed default value to False X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=9252536df4bfa92cd064ea000807675545c0d5ff;p=teleforma.git set is_subscribed default value to False --- diff --git a/teleforma/models/core.py b/teleforma/models/core.py index d4710530..b75a5f1b 100755 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -991,7 +991,7 @@ class StudentMixin(models.Model): promo_code = models.CharField(_('promo code'), blank=True, max_length=100) date_registered = models.DateTimeField(_('registration date'), auto_now_add=True, null=True, blank=True) date_subscribed = models.DateTimeField(_('subscription date'), null=True, blank=True) - is_subscribed = models.BooleanField(_('subscribed'), default=True) + is_subscribed = models.BooleanField(_('subscribed'), default=False) confirmation_sent = models.BooleanField(_('confirmation sent')) level = models.CharField(_('studying level'), blank=True, max_length=100)