mirror of https://git.48k.eu/ogcp
forms: replace Ok with Submit in form submit button
Make the submit label more uniform across the forms.master
parent
5fba469f7a
commit
f473059902
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue