stages/identification: fix *_flows missing in edit form

This commit is contained in:
Jens Langhammer 2020-06-02 16:39:55 +02:00
parent 1912b29dc5
commit 07d047c887
1 changed files with 1 additions and 1 deletions

View File

@ -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(),
}