summaryrefslogtreecommitdiffstats
path: root/ogcp
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2022-06-07 16:16:13 +0200
committerJavier Sánchez Parra <jsanchez@soleta.eu>2022-06-07 16:16:13 +0200
commit6b07e83f0376b1be6a70a8e1308a511c017184ba (patch)
tree76f1fc1dacedfb62c585d0bb75eb09fdf3336693 /ogcp
parent1d133dd53f7fa2fde5fb35c117aaa9349ddafd97 (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.
Diffstat (limited to 'ogcp')
-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 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'))