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/views.py | |
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/views.py')
-rw-r--r-- | ogcp/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/views.py b/ogcp/views.py index e8c5edf..2828d4a 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -1924,7 +1924,7 @@ def action_image_info(): form.name.data = image['name'] # Bytes to Mebibytes form.size.data = image['size'] / 1024 ** 2 - form.datasize.data = image['datasize'] / 1024 ** 3 + form.datasize.data = image['datasize'] / 1024 ** 2 form.modified.data = image['modified'] form.permissions.data = image['permissions'] form.software_id.data = image['software_id'] |