summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/client_details.html
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2022-01-19 16:24:04 +0100
committerJavier Sánchez Parra <jsanchez@soleta.eu>2022-01-19 17:08:16 +0100
commit302a776c5fd7be3ecd79b02f642f4e8dbee41a3b (patch)
tree07475245004c389b6cf6556c6b9516e23dd222cb /ogcp/templates/actions/client_details.html
parent813b9e28d13e1935f24be0fa0460880be2db9806 (diff)
Show disk and partition size in mebibytes
This commit converts disk and partition size from kibibytes to mebibytes to improve usability. Disk and partition size are used in "Client details" and "Partition & format" forms. It also returns size to kibibytes when creating /setup API payload as required by ogServer.
Diffstat (limited to 'ogcp/templates/actions/client_details.html')
-rw-r--r--ogcp/templates/actions/client_details.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/ogcp/templates/actions/client_details.html b/ogcp/templates/actions/client_details.html
index d4158bf..16160ea 100644
--- a/ogcp/templates/actions/client_details.html
+++ b/ogcp/templates/actions/client_details.html
@@ -16,7 +16,7 @@
<th>Partition</th>
<th>Type</th>
<th>Filesytem</th>
- <th>Size (KB)</th>
+ <th>Size (MB)</th>
<th>Image</th>
<th colspan="2"></th>
</tr>
@@ -27,7 +27,7 @@
<td>{{ entry.partition }}</td>
<td>{{ entry.code }}</td>
<td>{{ entry.filesystem }}</td>
- <td>{{ entry.size }}</td>
+ <td>{{ entry.size // 1024}}</td>
<td>{{ entry.image }}</td>
</tr>
{% endfor %}