1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 11:18:27 +02:00

Ask gender

This commit is contained in:
Yohann D'ANELLO
2021-01-22 08:45:00 +01:00
parent 48107943f9
commit 384de5758b
5 changed files with 144 additions and 93 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.11 on 2021-01-22 07:42
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('registration', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='participantregistration',
name='gender',
field=models.DateField(choices=[('female', 'Female'), ('male', 'Male'), ('other', 'Other')], default='other', verbose_name='gender'),
),
]