better description for formfield

This commit is contained in:
Thomas Steen Rasmussen 2017-08-01 15:28:04 +02:00
parent 036fcf67ef
commit c5d7caf3fc
2 changed files with 21 additions and 1 deletions

View 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'),
),
]

View file

@ -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(