mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-07-03 06:42:48 +02:00
Ask gender
This commit is contained in:
@ -128,6 +128,16 @@ class ParticipantRegistration(Registration):
|
||||
default=date.today,
|
||||
)
|
||||
|
||||
gender = models.DateField(
|
||||
verbose_name=_("gender"),
|
||||
choices=[
|
||||
("female", _("Female")),
|
||||
("male", _("Male")),
|
||||
("other", _("Other")),
|
||||
],
|
||||
default="other",
|
||||
)
|
||||
|
||||
address = AddressField(
|
||||
verbose_name=_("address"),
|
||||
null=True,
|
||||
|
Reference in New Issue
Block a user