Fix pronouns field being mandatory

This commit is contained in:
Cel
2021-11-18 09:07:19 +00:00
committed by Ailé
parent b6488d1d00
commit f66db0859e
2 changed files with 6 additions and 6 deletions

View File

@ -229,7 +229,7 @@ class User(AbstractBaseUser):
blank=True,
choices=[("MAN", _("Man")), ("WOMAN", _("Woman")), ("OTHER", _("Other"))],
)
pronouns = models.CharField(_("pronouns"), max_length=64, default="")
pronouns = models.CharField(_("pronouns"), max_length=64, blank=True, default="")
tshirt_size = models.CharField(
_("tshirt size"),
max_length=5,