From 8ec268630da8434bfe4985f69a5896ab034d36e8 Mon Sep 17 00:00:00 2001 From: Michael Huang Date: Tue, 2 Jul 2013 09:05:23 -0700 Subject: [PATCH] Add "Details of how this proposition will be implemented" under Body field in grey text for Propositions --- deme_django/modules/poll/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deme_django/modules/poll/models.py b/deme_django/modules/poll/models.py index ea6d5463..fd46aace 100644 --- a/deme_django/modules/poll/models.py +++ b/deme_django/modules/poll/models.py @@ -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 = ( @@ -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):