From c43ba1d8244f6c4c7e9120b5200ece665e05f4b6 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Tue, 7 Apr 2020 11:23:43 -0400 Subject: [PATCH] users: Fix regression where form help_text line was dropped Thanks to coucouf for pointing this out. Signed-off-by: James Valleroy Reviewed-by: Sunil Mohan Adapa --- plinth/modules/users/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plinth/modules/users/forms.py b/plinth/modules/users/forms.py index 55515febc..91c469fff 100644 --- a/plinth/modules/users/forms.py +++ b/plinth/modules/users/forms.py @@ -82,6 +82,7 @@ class CreateUserForm(ValidNewUsernameCheckMixin, choices=UsersAndGroups.get_group_choices, label=ugettext_lazy('Permissions'), required=False, widget=forms.CheckboxSelectMultiple, help_text=ugettext_lazy( + 'Select which services should be available to the new ' 'user. The user will be able to log in to services that ' 'support single sign-on through LDAP, if they are in the ' 'appropriate group.

Users in the admin group '