diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py
index f2a3602..94388c8 100644
--- a/ogcp/forms/action_forms.py
+++ b/ogcp/forms/action_forms.py
@@ -56,7 +56,6 @@ class PartitionForm(FlaskForm):
('FAT32', 'FAT32'),
('EMPTY', 'Empty')])
size = IntegerField(label=_l('Size (KB)'))
- format_partition = BooleanField(label=_l('Format'))
class SelectClientForm(FlaskForm):
ips = HiddenField()
diff --git a/ogcp/templates/actions/setup.html b/ogcp/templates/actions/setup.html
index 014fb7a..a81d67e 100644
--- a/ogcp/templates/actions/setup.html
+++ b/ogcp/templates/actions/setup.html
@@ -47,7 +47,6 @@
{{ _('Type') }} |
{{ _('Filesystem') }} |
{{ _('Size') }} (MB) |
- {{ _('Format?') }} |
|
@@ -60,7 +59,6 @@
{{ partition.part_type(class_="form-control") }} |
{{ partition.fs(class_="form-control") }} |
{{ partition.size(class_="form-control") }} |
- {{ partition.format_partition(class_="form-control") }} |
|