From 872a5f5241aa41395b35da2edcad19c17fc8b6ce Mon Sep 17 00:00:00 2001 From: "J.-S. Caux" <J.S.Caux@uva.nl> Date: Sat, 19 Mar 2016 05:11:57 +0100 Subject: [PATCH] Last version before ratings removal --- comments/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comments/forms.py b/comments/forms.py index 1d98b59e8..b0fea0807 100644 --- a/comments/forms.py +++ b/comments/forms.py @@ -45,7 +45,7 @@ class CommentForm(forms.ModelForm): def __init__(self, *args, **kwargs): super(CommentForm, self).__init__(*args, **kwargs) self.fields['comment_text'].widget.attrs.update({'placeholder': 'NOTE: only serious and meaningful Comments will be accepted.'}) - self.fields['remarks_for_editors'].widget.attrs.update({'rows': 3, 'placeholder': '(these remarks will not publicly visible)'}) + self.fields['remarks_for_editors'].widget.attrs.update({'rows': 3, 'placeholder': '(these remarks will not be publicly visible)'}) self.helper = FormHelper() self.helper.layout = Layout( Div( @@ -57,7 +57,7 @@ class CommentForm(forms.ModelForm): css_class="col-9"), Div( Fieldset( - 'Specify categorization:', + 'Specify categorization(s):', 'is_rem', 'is_que', 'is_ans', 'is_obj', 'is_rep', 'is_val', 'is_lit', 'is_sug', style="border: 0px; font-size: 90%"), HTML('<br>'), -- GitLab