diff options
author | Javier Hernandez <jhernandez@soleta.eu> | 2023-12-12 10:53:59 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2023-12-12 11:00:19 +0100 |
commit | 84bcdb3cae1ea13cc20bbf88dd9670733f44c02d (patch) | |
tree | cbd84160a929210f21a220af0f7282f8df891151 /ogcp/forms | |
parent | c66871f3ce01aafb9e94f3ed2ca72811a464f5c5 (diff) |
Change Image-details' 'Datasize' unit to MiB
Change the Image details form to display the 'Datasize' field of the
image in MiB instead of GiB
Diffstat (limited to 'ogcp/forms')
-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 c15d254..ab5a011 100644 --- a/ogcp/forms/action_forms.py +++ b/ogcp/forms/action_forms.py @@ -194,7 +194,7 @@ class DeleteRoomForm(FlaskForm): class ImageDetailsForm(FlaskForm): name = StringField(label=_l('Name')) size = DecimalField(label=_l('Size (MiB)')) - datasize = DecimalField(label=_l('Datasize (GiB)')) + datasize = DecimalField(label=_l('Datasize (MiB)')) modified = StringField(label=_l('Last update')) permissions = StringField(label=_l('Permissions')) software_id = StringField(label=_l('Software id')) |