mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-11 04:19:25 +00:00
Fix pronouns field being mandatory
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user