Fix the 30 character project limit

This commit is contained in:
Joe Onorato 2008-10-21 01:31:11 -07:00 committed by Shawn O. Pearce
parent 38966837f9
commit db98c9ba88
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ def _approval_right_to_field(key):
class AdminProjectForm(BaseForm):
_template = 'admin_project.html'
name = forms.CharField(max_length=30)
name = forms.CharField()
comment = forms.CharField(required=False,
max_length=10000,
widget=forms.Textarea(attrs={'cols': 60}))