Change max acronym length to 10 instead of 8
- Legacy-Id: 4348
This commit is contained in:
parent
85708073f0
commit
b869d9f9dc
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue