BooleanField -> CharField (a locale name is not a boolean)

This commit is contained in:
Yohann D'ANELLO 2020-08-13 19:48:15 +02:00
parent c50fdd6689
commit f5f379e6ad
1 changed files with 2 additions and 1 deletions

View File

@ -92,10 +92,11 @@ class Profile(models.Model):
default=False, default=False,
) )
ml_events_registration = models.BooleanField( ml_events_registration = models.CharField(
blank=True, blank=True,
null=True, null=True,
default=None, default=None,
max_length=2,
choices=[ choices=[
(None, _("No")), (None, _("No")),
('fr', _("Yes (receive them in french)")), ('fr', _("Yes (receive them in french)")),