- 'title': models.CharField(_('title'), max_length=255),
- 'organizer': models.CharField(_('organizer'), max_length=255, db_index=True),
- 'place': models.CharField(_('place'), max_length=255),
+ 'title': models.CharField(_('title'), max_length=255, blank=True),
+ 'organizer': models.CharField(_('organizer'), max_length=255,
+ db_index=True, blank=True),
+ 'place': models.CharField(_('place'), max_length=255, blank=True),
+ 'published': models.BooleanField(_('published'), default=False),