('subscription_deadline',models.DateField(default=datetime.date.today,help_text='Before this date, users are allowed to subscribe to this Trombi. After this date, users subscribed will be allowed to comment on each other.',verbose_name='subscription deadline')),
('comments_deadline',models.DateField(default=datetime.date.today,help_text="After this date, users won't be able to make comments anymore.",verbose_name='comments deadline')),
('max_chars',models.IntegerField(default=400,help_text='Maximum number of characters allowed in a comment.',verbose_name='maximum characters')),
('profile_pict',models.ImageField(upload_to='trombi',blank=True,help_text='The profile picture you want in the trombi (warning: this picture may be published)',verbose_name='profile pict',null=True)),
('scrub_pict',models.ImageField(upload_to='trombi',blank=True,help_text='The scrub picture you want in the trombi (warning: this picture may be published)',verbose_name='scrub pict',null=True)),