diff -r 7df431ddcfd3 -r 8f29bfb9eb52 app/soc/views/helper/surveys.py --- a/app/soc/views/helper/surveys.py Sat Jul 04 12:07:27 2009 +0200 +++ b/app/soc/views/helper/surveys.py Sat Jul 04 13:53:17 2009 +0200 @@ -56,7 +56,7 @@ >True -
+
+ """ @@ -379,9 +379,10 @@ attrs: the attrs for the widget tip: tooltip text for this field """ + attrs['class'] = 'comment' widget = widgets.Textarea(attrs=attrs) - comment_field = CharField(help_text=tip, required=False, label='Comments', - widget=widget, initial=comment) + comment_field = CharField(help_text=tip, required=False, + label='Add a Comment (optional)', widget=widget, initial=comment) self.survey_fields[COMMENT_PREFIX + field] = comment_field