Allow tags to be blank

This commit is contained in:
Lionel Porcheron 2017-10-11 10:19:44 +02:00
parent 812e2ef0f4
commit 8805fcd3d4
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ class Talk(PonyConfModel):
description = models.TextField(verbose_name=_('Description of your talk'),
help_text=_('This field is only visible by organizers.'))
track = models.ForeignKey(Track, blank=True, null=True, verbose_name=_('Track'))
tags = models.ManyToManyField(Tag)
tags = models.ManyToManyField(Tag, blank=True)
notes = models.TextField(blank=True, verbose_name=_('Message to organizers'),
help_text=_('If you have any constraint or if you have anything that may '
'help you to select your talk, like a video or slides of your'