from django import forms

class QualityAnnotationForm(forms.Form):
      annotation = forms.CharField(label='',
                                   widget=forms.Textarea(
                                         attrs={'rows': 12,'cols': 85}
                                   ),
                                   max_length=1000)
      return_to_page = forms.IntegerField(widget=forms.HiddenInput)