Merged in [10115] from rjsparks@nostrum.com:

Remove an extraneous field from the form that lets the nomcom chair paste in a questionnaire response.
 - Legacy-Id: 10118
Note: SVN reference [10115] has been migrated to Git commit 3ee236d3ee25dffdd3516b0740251705c4db248c
This commit is contained in:
Henrik Levkowetz 2015-10-01 20:44:47 +00:00
parent 9688749404
commit e1cc8218e7

View file

@ -591,8 +591,7 @@ class QuestionnaireForm(BaseNomcomForm, forms.ModelForm):
class Meta:
model = Feedback
fields = ('positions',
'comments')
fields = ( 'comments', )
class NomComTemplateForm(BaseNomcomForm, DBTemplateForm):
content = forms.CharField(label="Text", widget=forms.Textarea(attrs={'cols': '120', 'rows':'40', }))