forms: improve scopes field description in UserForm

Improve the information provided to the user related to scope
selection.
master
Alejandro Sirgo Rica 2024-06-14 12:04:30 +02:00
parent c3a2dc028d
commit 3fa3888b84
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class UserForm(FlaskForm):
)
scopes = SelectMultipleField(
label=_l('Allowed scopes'),
description=_l('Leave this empty to give full permissions'),
description=_l('No scope selection gives full access'),
option_widget=widgets.CheckboxInput(),
widget=widgets.ListWidget(prefix_label=False)
)