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

Users can indicate their health issues to organizers

This commit is contained in:
Yohann D'ANELLO
2021-01-23 21:55:54 +01:00
parent f53f9fbc6c
commit c500a735d8
5 changed files with 117 additions and 80 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.11 on 2021-01-23 20:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('registration', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='participantregistration',
name='health_issues',
field=models.TextField(blank=True, help_text='You can indicate here your allergies or anything that is important to know for organizers', verbose_name='health issues'),
),
]