summaryrefslogtreecommitdiffstats
path: root/ogcp/forms
diff options
context:
space:
mode:
authorJavier Hernandez <jhernandez@soleta.eu>2023-12-21 11:42:37 +0100
committerOpenGnSys Support Team <soporte-og@soleta.eu>2023-12-21 11:54:01 +0100
commit52c5555f659db69995296c6b3bad68244ceeb2f4 (patch)
tree6ca715c26d50c9b9bc726f114bfa50d3a3abea72 /ogcp/forms
parenta5a5ef362b0e8bb79477070ea3598b90a89b977a (diff)
templates: rename 'create' button to 'submit'
In client_details template, rename 'create' button to 'submit'. This template is used by both client-add and client-edit commands; it would not make sense to have a 'Create' button in client-edit.
Diffstat (limited to 'ogcp/forms')
-rw-r--r--ogcp/forms/action_forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py
index 3d02f8a..64b292a 100644
--- a/ogcp/forms/action_forms.py
+++ b/ogcp/forms/action_forms.py
@@ -122,7 +122,7 @@ class ClientDetailsForm(FlaskForm):
repo = SelectField(label=_l('Repository'))
room = SelectField(label=_l('Room'))
boot = SelectField(label=_l('Boot Mode'))
- create = SubmitField(label=_l('Create'))
+ submit = SubmitField(label=_l('Submit'))
class ImportClientsForm(FlaskForm):
server = HiddenField()