Merged in [17028] from fenton@bluepopcorn.net:

Adds Closing note field to state specific WG edit. Fixes #2779.
 - Legacy-Id: 17039
Note: SVN reference [17028] has been migrated to Git commit 020d4a393c
This commit is contained in:
Henrik Levkowetz 2019-11-18 02:33:45 +00:00
commit da3a82fa6b

View file

@ -124,7 +124,7 @@ class GroupForm(forms.Form):
if field:
keys = list(self.fields.keys())
for f in keys:
if f != field:
if f != field and not (f == 'closing_note' and field == 'state'):
del self.fields[f]
def clean_acronym(self):