From 96830f3c215fe5cff01dcba0b2a11f7a28cd81e4 Mon Sep 17 00:00:00 2001 From: James Tauber Date: Wed, 20 Feb 2013 01:04:20 -0500 Subject: [PATCH] more tweaks to field label and help text to be more generic for different types of proposal --- symposion/proposals/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/symposion/proposals/models.py b/symposion/proposals/models.py index 7194977b..e70af550 100644 --- a/symposion/proposals/models.py +++ b/symposion/proposals/models.py @@ -83,13 +83,13 @@ class ProposalBase(models.Model): title = models.CharField(max_length=100) description = models.TextField( - _("Brief Outline"), + _("Brief Description"), max_length=400, # @@@ need to enforce 400 in UI help_text="If your proposal is accepted this will be made public and printed in the program. Should be one paragraph, maximum 400 characters." ) abstract = MarkupField( _("Detailed Abstract"), - help_text=_("Detailed description and outline. Will be made public if your proposal is accepted. Edit using Markdown.") + help_text=_("Detailed outline. Will be made public if your proposal is accepted. Edit using Markdown.") ) additional_notes = MarkupField( blank=True,