From 020d4a393ce3f05347c37e95ffd2682be1578bab Mon Sep 17 00:00:00 2001 From: Jim Fenton Date: Sat, 16 Nov 2019 05:46:51 +0000 Subject: [PATCH] Adds Closing note field to state specific WG edit. Fixes #2779. Commit ready for merge. - Legacy-Id: 17028 --- ietf/group/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/group/forms.py b/ietf/group/forms.py index 63353dc8a..ead477ac5 100644 --- a/ietf/group/forms.py +++ b/ietf/group/forms.py @@ -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):