Skip to content

Commit

Permalink
update is_management_group label/help text
Browse files Browse the repository at this point in the history
  • Loading branch information
felixrindt committed Sep 1, 2023
1 parent 90457d0 commit 23ef745
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ephios/core/forms/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,17 @@ class GroupForm(PermissionFormMixin, ModelForm):
is_hr_group = PermissionField(
label=_("Can edit users"),
help_text=_(
"If checked, users in this group can view, add, edit and delete users. They can also manage group memberships for their own groups."
"If checked, users in this group can view, add, edit and delete users. "
"They can also manage group memberships for their own groups."
),
permissions=HR_PERMISSIONS,
required=False,
)
is_management_group = PermissionField(
label=_("Can manage permissions and qualifications"),
label=_("Can change permissions and manage ephios"),
help_text=_(
"If checked, users in this group can manage users, groups, all group memberships, eventtypes and qualifications"
"If checked, users in this group can edit all users, change groups, their permissions and memberships "
"as well as define eventtypes and qualifications."
),
permissions=MANAGEMENT_PERMISSIONS,
required=False,
Expand Down

0 comments on commit 23ef745

Please sign in to comment.