Adds Closing note field to state specific WG edit. Fixes #2779. Commit ready for merge.

- Legacy-Id: 17028
This commit is contained in:
Jim Fenton 2019-11-16 05:46:51 +00:00
parent 34f93932a2
commit 020d4a393c

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):