SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 872a5f52 authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Last version before ratings removal

parent 8ba914e6
No related branches found
No related tags found
No related merge requests found
...@@ -45,7 +45,7 @@ class CommentForm(forms.ModelForm): ...@@ -45,7 +45,7 @@ class CommentForm(forms.ModelForm):
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
super(CommentForm, self).__init__(*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['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 = FormHelper()
self.helper.layout = Layout( self.helper.layout = Layout(
Div( Div(
...@@ -57,7 +57,7 @@ class CommentForm(forms.ModelForm): ...@@ -57,7 +57,7 @@ class CommentForm(forms.ModelForm):
css_class="col-9"), css_class="col-9"),
Div( Div(
Fieldset( Fieldset(
'Specify categorization:', 'Specify categorization(s):',
'is_rem', 'is_que', 'is_ans', 'is_obj', 'is_rep', 'is_val', 'is_lit', 'is_sug', 'is_rem', 'is_que', 'is_ans', 'is_obj', 'is_rep', 'is_val', 'is_lit', 'is_sug',
style="border: 0px; font-size: 90%"), style="border: 0px; font-size: 90%"),
HTML('<br>'), HTML('<br>'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment