Skip to content

Commit

Permalink
Fix pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeG committed Mar 22, 2021
1 parent 09df58c commit e5ae594
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions eventol/manager/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,11 @@ class Event(models.Model):
cropping = ImageRatioField('image', '700x450', size_warning=True,
verbose_name=_('Cropping'), free_crop=True,
help_text=_('The image must be 700x450 px. You can crop it here.'))
activities_proposal_form_text = RichTextField(verbose_name=_('Activity proposal form text'),
help_text=_("A message to show in the activities proposal form"),
blank=True, null=True)
activities_proposal_form_text = RichTextField(
verbose_name=_('Activity proposal form text'),
help_text=_("A message to show in the activities proposal form"),
blank=True, null=True
)
template = models.FileField(_('Template'),
upload_to='templates', blank=True, null=True,
help_text=_('Custom template HTML for event index page'))
Expand Down

0 comments on commit e5ae594

Please sign in to comment.