forms: replace Ok with Submit in form submit button

Make the submit label more uniform across the forms.
master
Alejandro Sirgo Rica 2024-06-27 14:34:22 +02:00
parent 5fba469f7a
commit f473059902
1 changed files with 3 additions and 3 deletions

View File

@ -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()