Change max acronym length to 10 instead of 8

- Legacy-Id: 4348
This commit is contained in:
Ole Laursen 2012-05-02 11:36:41 +00:00
parent 85708073f0
commit b869d9f9dc

View file

@ -21,7 +21,7 @@ from ietf.person.forms import EmailsField
class WGForm(forms.Form):
name = forms.CharField(max_length=255, label="WG Name", required=True)
acronym = forms.CharField(max_length=8, label="WG Acronym", required=True)
acronym = forms.CharField(max_length=10, label="WG Acronym", required=True)
chairs = EmailsField(label="WG Chairs", required=False)
secretaries = EmailsField(label="WG Secretaries", required=False)
techadv = EmailsField(label="WG Technical Advisors", required=False)