Skip to content

Commit

Permalink
Add "Details of how this proposition will be implemented" under Body …
Browse files Browse the repository at this point in the history
…field in grey text for Propositions
  • Loading branch information
mikhuang committed Jul 2, 2013
1 parent 7cb3da7 commit 8ec2686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deme_django/modules/poll/models.py
Expand Up @@ -26,7 +26,7 @@ class Meta:
verbose_name_plural = _('polls')

#fields:
question = models.TextField(_('question'), blank=True, help_text=_('Explain to poll participants what the poll is about'))
question = models.TextField(_('question'), blank=True, help_text=_('Explain to participants what this poll is about'))
begins = models.DateTimeField(_('begins'), null=True, blank=True, default=None, help_text=_('(Advanced) Dates must be entered in the format "MM/DD/YY"'))
deadline = models.DateTimeField(_('deadline'), null=True, blank=True, default=None, help_text=_('(Advanced) Dates must be entered in the format "MM/DD/YY"'))
time_zones = (
Expand Down Expand Up @@ -114,7 +114,7 @@ class Meta:
verbose_name_plural = _('propositions')

#fields:
summary_text = models.CharField(_('summary text'), blank=True, max_length=140)
summary_text = models.CharField(_('summary text'), blank=True, max_length=140, help_text=_('A short summary of this proposition. This is displayed by the item name while the Body is displayed only when a participant clicks the Read More button'))


class PropositionResponse(models.Model):
Expand Down

0 comments on commit 8ec2686

Please sign in to comment.