From cd8157ea08451ebe96ec2d5ac65e0f9eb4faf8f7 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Fri, 25 Dec 2020 23:34:26 +0100 Subject: [PATCH] stages/password: fix PasswordStageForm not showing backends --- authentik/stages/password/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/stages/password/forms.py b/authentik/stages/password/forms.py index 9d8902cf5..b29591c2d 100644 --- a/authentik/stages/password/forms.py +++ b/authentik/stages/password/forms.py @@ -53,5 +53,5 @@ class PasswordStageForm(forms.ModelForm): fields = ["name", "backends", "configure_flow", "failed_attempts_before_cancel"] widgets = { "name": forms.TextInput(), - "backends": forms.SelectMultiple(get_authentication_backends()), + "backends": forms.SelectMultiple(choices=get_authentication_backends()), }