('subscription_deadline',models.DateField(verbose_name='subscription deadline',default=django.utils.timezone.now,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.')),
('comments_deadline',models.DateField(verbose_name='comments deadline',default=django.utils.timezone.now,help_text="After this date, users won't be able to make comments anymore")),
('max_chars',models.IntegerField(verbose_name='maximum characters',default=400,help_text='maximum number of characters allowed in a comment')),
('subscription_deadline',models.DateField(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.',default=django.utils.timezone.now,verbose_name='subscription deadline')),
('comments_deadline',models.DateField(help_text="After this date, users won't be able to make comments anymore.",default=django.utils.timezone.now,verbose_name='comments deadline')),
('max_chars',models.IntegerField(help_text='Maximum number of characters allowed in a comment.',default=400,verbose_name='maximum characters')),
('profile_pict',models.ImageField(verbose_name='profile pict',upload_to='trombi',null=True,help_text='The profile picture you want in the trombi (warning: this picture may be published)',blank=True)),
('scrub_pict',models.ImageField(verbose_name='scrub pict',upload_to='trombi',null=True,help_text='The scrub picture you want in the trombi (warning: this picture may be published)',blank=True)),
field=models.ImageField(null=True,blank=True,help_text='The profile picture you want in the trombi (warning: this picture may be published)',verbose_name='profile pict',upload_to='trombi'),
),
migrations.AddField(
model_name='trombiuser',
name='scrub_pict',
field=models.ImageField(null=True,blank=True,help_text='The scrub picture you want in the trombi (warning: this picture may be published)',verbose_name='scrub pict',upload_to='trombi'),