remove comment character limit

This commit is contained in:
Adarnof 2016-07-15 10:41:12 -04:00 committed by GitHub
parent abddcc9844
commit 45388a8907

View File

@ -2,7 +2,7 @@ from django import forms
from django.utils.translation import ugettext_lazy as _
class HRApplicationCommentForm(forms.Form):
comment = forms.CharField(widget=forms.Textarea, required=False, label=_("Comment"), max_length=254)
comment = forms.CharField(widget=forms.Textarea, required=False, label=_("Comment"))
class HRApplicationSearchForm(forms.Form):
search_string = forms.CharField(max_length=254, required=True, label=_("Search String"))