diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-27 14:34:22 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-28 08:43:34 +0200 |
commit | f473059902fe7e30bea8bb0e05da3228956f3fd9 (patch) | |
tree | 99ca1eb4bf24afca05fd99edb3bd1478d9eda435 | |
parent | 5fba469f7a3a3d69c77488f9a208c0044b6a2027 (diff) |
forms: replace Ok with Submit in form submit button
Make the submit label more uniform across the forms.
-rw-r--r-- | ogcp/forms/action_forms.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py index d650506..3f4a8fc 100644 --- a/ogcp/forms/action_forms.py +++ b/ogcp/forms/action_forms.py @@ -64,7 +64,7 @@ class SelectClientForm(FlaskForm): ips = HiddenField() selected_client = SelectField(label=_l('Select one client as reference to ' 'define the partition scheme')) - ok = SubmitField(label=_l('Ok')) + ok = SubmitField(label=_l('Submit')) class SetupForm(FlaskForm): ips = HiddenField() @@ -166,12 +166,12 @@ class ImportClientsForm(FlaskForm): class BootModeForm(FlaskForm): ips = HiddenField() boot = SelectField(label=_l('Boot mode')) - ok = SubmitField(label=_l('Ok')) + ok = SubmitField(label=_l('Submit')) class OgliveForm(FlaskForm): ips = HiddenField() oglive = SelectField(label=_l('ogLive')) - ok = SubmitField(label=_l('Ok')) + ok = SubmitField(label=_l('Submit')) class ImageCreateForm(FlaskForm): ip = HiddenField() |