better description for formfield
This commit is contained in:
parent
036fcf67ef
commit
c5d7caf3fc
20
src/program/migrations/0044_auto_20170801_1527.py
Normal file
20
src/program/migrations/0044_auto_20170801_1527.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.5 on 2017-08-01 13:27
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('program', '0043_auto_20170801_1526'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='eventproposal',
|
||||
name='speakers',
|
||||
field=models.ManyToManyField(blank=True, help_text='Pick the speaker(s) for this event. If you cannot see anything here you need to go back and create Speaker Proposal(s) first.', to='program.SpeakerProposal'),
|
||||
),
|
||||
]
|
|
@ -242,7 +242,7 @@ class EventProposal(UserSubmittedModel):
|
|||
speakers = models.ManyToManyField(
|
||||
'program.SpeakerProposal',
|
||||
blank=True,
|
||||
help_text='Pick the speaker(s) for this event',
|
||||
help_text='Pick the speaker(s) for this event. If you cannot see anything here you need to go back and create Speaker Proposal(s) first.',
|
||||
)
|
||||
|
||||
allow_video_recording = models.BooleanField(
|
||||
|
|
Loading…
Reference in a new issue