From: Yoan Le Clanche Date: Wed, 15 May 2024 09:29:47 +0000 (+0200) Subject: Fix registration error X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=4097cb96227c798d815cb6b9495d9cca2acfbf13;p=teleforma.git Fix registration error --- diff --git a/teleforma/models/core.py b/teleforma/models/core.py index b75a5f1b..a1d360ff 100755 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -992,7 +992,7 @@ class StudentMixin(models.Model): 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=False) - confirmation_sent = models.BooleanField(_('confirmation sent')) + confirmation_sent = models.BooleanField(_('confirmation sent'), default=False) level = models.CharField(_('studying level'), blank=True, max_length=100) balance = models.FloatField(_('balance de paiement'), help_text='€', blank=True, null=True)