Say ‘team members’ not ‘users’ for permissions

This is consistent with the language we use elsewhere.

Also removes the colon (it’s considered implicit in a form label).
This commit is contained in:
Chris Hill-Scott
2019-04-01 17:23:16 +01:00
parent 0f9207a161
commit f1126c8cbb
2 changed files with 2 additions and 2 deletions

View File

@@ -1353,7 +1353,7 @@ class TemplateFolderForm(StripWhitespaceForm):
(item.id, item.name) for item in all_service_users
]
users_with_permission = MultiCheckboxField('Users who can see this folder:')
users_with_permission = MultiCheckboxField('Team members who can see this folder')
name = StringField('Folder name', validators=[DataRequired(message='Cant be empty')])