Adds Closing note field to state specific WG edit. Fixes #2779. Commit ready for merge.
- Legacy-Id: 17028
This commit is contained in:
parent
34f93932a2
commit
020d4a393c
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue