diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-06-07 16:16:13 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-06-07 16:16:13 +0200 |
commit | 6b07e83f0376b1be6a70a8e1308a511c017184ba (patch) | |
tree | 76f1fc1dacedfb62c585d0bb75eb09fdf3336693 | |
parent | 1d133dd53f7fa2fde5fb35c117aaa9349ddafd97 (diff) |
Rename field "OS" from "Create image"
Rename "OS" to "Partition" to improve clarity.
This field represent which partition is used to create the image.
-rw-r--r-- | ogcp/forms/action_forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py index b94ad09..1ee7b72 100644 --- a/ogcp/forms/action_forms.py +++ b/ogcp/forms/action_forms.py @@ -136,7 +136,7 @@ class OgliveForm(FlaskForm): class ImageCreateForm(FlaskForm): ip = HiddenField() - os = SelectField(label=_l('OS'), choices=[]) + os = SelectField(label=_l('Partition'), choices=[]) name = StringField(label=_l('Image name'), validators=[InputRequired()]) description = StringField(label=_l('Description')) |