summaryrefslogtreecommitdiffstats
path: root/ogcp/forms
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2022-01-20 08:06:58 +0100
committerJavier Sánchez Parra <jsanchez@soleta.eu>2022-01-20 09:25:18 +0100
commite11125ef9e579895d38c5d377ddc87f7885b4a3c (patch)
treef80611a6346a3425801e7229e6adb08cab2125ce /ogcp/forms
parent302a776c5fd7be3ecd79b02f642f4e8dbee41a3b (diff)
Rename MSDOS to MBR
This commit rename partition table type MSDOS to MBR in the front-end. At the back-end ogCP still uses MSDOS string because ogClient scripts (aka cloning engine) expects it.
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 44a898f..09197d5 100644
--- a/ogcp/forms/action_forms.py
+++ b/ogcp/forms/action_forms.py
@@ -61,7 +61,7 @@ class SetupForm(FlaskForm):
ips = HiddenField()
disk = HiddenField()
disk_type = SelectField(label=_l('Type'),
- choices=[('MSDOS', 'MSDOS'),
+ choices=[('MSDOS', 'MBR'),
('GPT', 'GPT')])
partitions = FieldList(FormField(PartitionForm),
min_entries=1,