diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-14 12:04:30 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-14 15:26:25 +0200 |
commit | 3fa3888b8487a80a0a0294c8b26caa71874cac6b (patch) | |
tree | b4d6cb6cf3cb1f6bec312c514b8fe0404edda727 /ogcp/forms/auth.py | |
parent | c3a2dc028db95530bf078aafc05270a110a556d1 (diff) |
forms: improve scopes field description in UserForm
Improve the information provided to the user related to scope
selection.
Diffstat (limited to 'ogcp/forms/auth.py')
-rw-r--r-- | ogcp/forms/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/forms/auth.py b/ogcp/forms/auth.py index ba7a545..72afe23 100644 --- a/ogcp/forms/auth.py +++ b/ogcp/forms/auth.py @@ -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) ) |