From 07d047c887621309d8e5b6fbcf72625fc6a3b167 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 2 Jun 2020 16:39:55 +0200 Subject: [PATCH] stages/identification: fix *_flows missing in edit form --- passbook/stages/identification/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passbook/stages/identification/forms.py b/passbook/stages/identification/forms.py index 04217f7f8..882ce0f03 100644 --- a/passbook/stages/identification/forms.py +++ b/passbook/stages/identification/forms.py @@ -16,7 +16,7 @@ class IdentificationStageForm(forms.ModelForm): class Meta: model = IdentificationStage - fields = ["name", "user_fields", "template"] + fields = ["name", "user_fields", "template", "enrollment_flow", "recovery_flow"] widgets = { "name": forms.TextInput(), }