diff --git a/plinth/modules/users/forms.py b/plinth/modules/users/forms.py index 0efe16f11..77fc73f71 100644 --- a/plinth/modules/users/forms.py +++ b/plinth/modules/users/forms.py @@ -41,6 +41,7 @@ class CreateUserForm(UserCreationForm): choices=GROUP_CHOICES, label=_('Groups'), required=False, + widget=forms.CheckboxSelectMultiple, help_text=_('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 ' diff --git a/plinth/modules/users/templates/users_create.html b/plinth/modules/users/templates/users_create.html index 20e15fb91..4fd097880 100644 --- a/plinth/modules/users/templates/users_create.html +++ b/plinth/modules/users/templates/users_create.html @@ -20,6 +20,14 @@ {% load bootstrap %} +{% block page_head %} + +{% endblock %} + {% block content %}