Add childcare question into accessibility box
This commit is contained in:
parent
4e8296e235
commit
8cdda4242a
2 changed files with 24 additions and 4 deletions
20
vendor/symposion/speakers/migrations/0007_auto_20180712_1006.py
vendored
Normal file
20
vendor/symposion/speakers/migrations/0007_auto_20180712_1006.py
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.13 on 2018-07-12 00:06
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('symposion_speakers', '0006_auto_20180701_1347'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='speaker',
|
||||
name='accessibility',
|
||||
field=models.TextField(blank=True, help_text='Let us know how we can help you during the conference, for example your accessibility requirements, whether you require access to child minding facilities, or anything else you think we should know about.', verbose_name='Other requirements'),
|
||||
),
|
||||
]
|
8
vendor/symposion/speakers/models.py
vendored
8
vendor/symposion/speakers/models.py
vendored
|
@ -58,10 +58,10 @@ class Speaker(models.Model):
|
|||
)
|
||||
accessibility = models.TextField(
|
||||
blank=True,
|
||||
help_text=_("Please describe any special accessibility requirements "
|
||||
"that you may have. " +
|
||||
constants.TEXT_FIELD_MONOSPACE_NOTE),
|
||||
verbose_name=_("Accessibility requirements"))
|
||||
help_text=_("Let us know how we can help you during the conference, for example "
|
||||
"your accessibility requirements, whether you require access to child "
|
||||
"minding facilities, or anything else you think we should know about."),
|
||||
verbose_name=_("Other requirements"))
|
||||
accessibility_html = models.TextField(blank=True)
|
||||
travel_assistance = models.BooleanField(
|
||||
blank=True,
|
||||
|
|
Loading…
Reference in a new issue