mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 14:13:21 +00:00
Merge branch 'gender_options' into 'master'
Fix pronouns field being mandatory See merge request ae/Sith!288
This commit is contained in:
commit
5b2c70e4fb
@ -5,14 +5,14 @@ from django.db import migrations, models
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("core", "0036_auto_20211001_0248"),
|
||||
]
|
||||
dependencies = [("core", "0036_auto_20211001_0248")]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="user",
|
||||
name="pronouns",
|
||||
field=models.CharField(default="", max_length=64, verbose_name="pronouns"),
|
||||
field=models.CharField(
|
||||
blank=True, default="", max_length=64, verbose_name="pronouns"
|
||||
),
|
||||
)
|
||||
]
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user